mirror of
https://github.com/sanidhyy/duolingo-clone.git
synced 2025-05-17 22:05:52 +08:00
52 lines
1003 B
TypeScript
52 lines
1003 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const siteConfig: Metadata = {
|
|
title: "Lingo",
|
|
description:
|
|
"Interactive platform for language learning with lessons, quizzes, and progress tracking.",
|
|
keywords: [
|
|
"reactjs",
|
|
"nextjs",
|
|
"vercel",
|
|
"react",
|
|
"duolingo-clone",
|
|
"learn-language",
|
|
"shadcn",
|
|
"shadcn-ui",
|
|
"radix-ui",
|
|
"cn",
|
|
"clsx",
|
|
"lingo",
|
|
"postgresql",
|
|
"sonner",
|
|
"drizzle",
|
|
"zustand",
|
|
"mysql",
|
|
"lucide-react",
|
|
"next-themes",
|
|
"clerk-themes",
|
|
"clerk",
|
|
"postcss",
|
|
"prettier",
|
|
"react-dom",
|
|
"tailwindcss",
|
|
"tailwindcss-animate",
|
|
"ui/ux",
|
|
"js",
|
|
"javascript",
|
|
"typescript",
|
|
"eslint",
|
|
"html",
|
|
"css",
|
|
] as Array<string>,
|
|
authors: {
|
|
name: "Sanidhya Kumar Verma",
|
|
url: "https://github.com/sanidhyy",
|
|
},
|
|
} as const;
|
|
|
|
export const links = {
|
|
sourceCode: "https://github.com/sanidhyy/duolingo-clone",
|
|
email: "sanidhya.verma12345@gmail.com",
|
|
} as const;
|