26 lines
910 B
TypeScript
26 lines
910 B
TypeScript
export interface Character {
|
|
id: number;
|
|
name: string;
|
|
age: number;
|
|
description: string;
|
|
}
|
|
|
|
|
|
export const characters: Character[] = [
|
|
{
|
|
id: 1,
|
|
name: "Anaya Kapoor",
|
|
age:24,
|
|
description: "🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
|
|
"\n" +
|
|
"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\n" +
|
|
"\n" +
|
|
"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\n" +
|
|
"\n" +
|
|
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
|
|
"\n" +
|
|
"Be your own kind of beautiful."
|
|
},
|
|
]
|
|
|