86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import { C } from './tokens';
|
|
import type { InfoCardData, StatItem, Step } from './types';
|
|
|
|
export const STEPS: Step[] = [
|
|
{
|
|
num: '01',
|
|
icon: '▶',
|
|
title: 'Click Start',
|
|
desc: 'Hit the Start button on the homepage to kick off the process.',
|
|
},
|
|
{
|
|
num: '02',
|
|
icon: '🔐',
|
|
title: 'Register or Log In',
|
|
desc: 'Create a free account or sign in to access the checking platform.',
|
|
},
|
|
{
|
|
num: '03',
|
|
icon: '📄',
|
|
title: 'Upload Document',
|
|
desc: "Upload your file and enter the document's topic or theme.",
|
|
},
|
|
{
|
|
num: '04',
|
|
icon: '📤',
|
|
title: 'Send for Check',
|
|
desc: 'Submit your document for deep plagiarism analysis.',
|
|
},
|
|
{
|
|
num: '05',
|
|
icon: '💳',
|
|
title: 'Complete Payment',
|
|
desc: 'Pay securely for the plagiarism checking service.',
|
|
},
|
|
{
|
|
num: '06',
|
|
icon: '📜',
|
|
title: 'Get Your Report',
|
|
desc: 'Receive your official certificate and full plagiarism report.',
|
|
},
|
|
];
|
|
|
|
export const STATS: StatItem[] = [
|
|
{ value: '98.7%', label: 'Detection accuracy' },
|
|
{ value: '50K+', label: 'Documents checked' },
|
|
{ value: '12+', label: 'Supported formats' },
|
|
];
|
|
|
|
export const INFO_CARDS: InfoCardData[] = [
|
|
{
|
|
delay: 0,
|
|
accent: C.accent,
|
|
bg: C.accentLight,
|
|
icon: '📖',
|
|
title: 'What is Plagiarism?',
|
|
text: "Plagiarism is presenting another person's ideas, words, or creative work without proper attribution. It ranges from direct copy-paste to subtle paraphrasing — both are equally problematic in academic or professional writing.",
|
|
},
|
|
{
|
|
delay: 0.1,
|
|
accent: C.red,
|
|
bg: C.redLight,
|
|
icon: '🛡️',
|
|
title: 'Why Check Your Document?',
|
|
text: 'Unintentional plagiarism is more common than you think. Checking before submission protects your reputation, ensures proper citation, meets institutional requirements, and gives you peace of mind.',
|
|
},
|
|
{
|
|
delay: 0.2,
|
|
accent: C.green,
|
|
bg: C.greenLight,
|
|
icon: '📜',
|
|
title: 'What You Get',
|
|
text: 'A comprehensive originality report with matched sources, similarity percentages, and an official signed certificate — accepted by universities, publishers, and institutions worldwide.',
|
|
},
|
|
];
|
|
|
|
export const TICKER_ITEMS: string[] = [
|
|
'Originality Verified',
|
|
'Academic Integrity',
|
|
'Trusted Reports',
|
|
'Deep Analysis',
|
|
'Fast Results',
|
|
'Official Certificate',
|
|
];
|
|
|
|
export const DOC_LINE_WIDTHS: number[] = [100, 88, 95, 72, 90, 60];
|