55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import type { Dictionary } from "@/content/types";
|
|
|
|
const en: Dictionary = {
|
|
common: {
|
|
siteTitle: "diyaa | Personal Site",
|
|
navLabel: "Main navigation",
|
|
languageSwitcherLabel: "Switch language",
|
|
nav: {
|
|
home: "Home",
|
|
about: "About Me",
|
|
contact: "Contact",
|
|
},
|
|
footerRights: "{year} All rights reserved",
|
|
},
|
|
home: {
|
|
kicker: "Fresh personal presence",
|
|
title: "A bold digital space for my professional identity",
|
|
description:
|
|
"This is placeholder copy you can replace quickly. It is built to highlight your profile, communicate value, and stay clean on every screen size.",
|
|
primaryCta: "Start a conversation",
|
|
highlights: [
|
|
{ value: "3", label: "Core pages" },
|
|
{ value: "RTL/LTR", label: "Direction ready" },
|
|
{ value: "100%", label: "Customizable" },
|
|
],
|
|
},
|
|
about: {
|
|
kicker: "Short introduction",
|
|
title: "About me",
|
|
story:
|
|
"This is temporary biography text. Replace it with your real story, strengths, and the kind of outcomes you deliver through your work.",
|
|
skillsTitle: "Skills",
|
|
skills: ["Frontend engineering", "UX refinement", "Content structuring", "Digital project delivery"],
|
|
experienceTitle: "Experience highlights",
|
|
experience: [
|
|
"Placeholder experience line 1",
|
|
"Placeholder experience line 2",
|
|
"Placeholder experience line 3",
|
|
],
|
|
},
|
|
contact: {
|
|
kicker: "Let us connect",
|
|
title: "Contact",
|
|
description: "Your real contact links will be added later. The placeholders below are ready for direct replacement.",
|
|
pendingCta: "Link pending",
|
|
channels: [
|
|
{ name: "Email", status: "Real link will be added soon" },
|
|
//{ name: "LinkedIn", status: "Real link will be added soon" },
|
|
//{ name: "GitHub", status: "Real link will be added soon" },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default en;
|