diff --git a/messages/en.json b/messages/en.json index 3addc30..1357ffc 100644 --- a/messages/en.json +++ b/messages/en.json @@ -185,6 +185,21 @@ "quickStart": "Quickstart", "contactUs": "Contact Us" }, + "PrimaryFeatures": { + "title": "Features", + "MobileFriendlyCard": { + "title": "Mobile Friendly", + "description": "Responsive design with TailwindCSS, automatically adapts to different devices (quiz interface adaptation still in development)" + }, + "DockerCard": { + "title": "Ready to Use", + "description": "Pre-built Docker images for quick deployment, saving configuration time" + }, + "LSPCard": { + "title": "Say Goodbye to Primitive Editors", + "description": "Integrated with real-time detection, code completion, and type hints" + } + }, "FAQs": { "title": "Frequently Asked Questions", "description": "Can't find your answer? Contact us!", diff --git a/messages/zh.json b/messages/zh.json index 7b97b99..82ed24a 100644 --- a/messages/zh.json +++ b/messages/zh.json @@ -185,6 +185,21 @@ "quickStart": "即刻启程", "contactUs": "联系我们" }, + "PrimaryFeatures": { + "title": "特性", + "MobileFriendlyCard": { + "title": "移动端友好", + "description": "采用 TailwindCSS 实现响应式布局,界面可自动适配不同设备(答题界面适配功能仍在开发中)" + }, + "DockerCard": { + "title": "开箱即用", + "description": "提供预构建的 Docker 镜像,支持快速部署,节省配置时间" + }, + "LSPCard": { + "title": "告别原始编辑器", + "description": "集成实时检测、代码补全、类型提示" + } + }, "FAQs": { "title": "常见问题", "description": "未找到答案?欢迎联系我们!", diff --git a/public/docker.png b/public/docker.png new file mode 100644 index 0000000..600476c Binary files /dev/null and b/public/docker.png differ diff --git a/public/lsp.png b/public/lsp.png new file mode 100644 index 0000000..8c9c4f0 Binary files /dev/null and b/public/lsp.png differ diff --git a/public/mobile.png b/public/mobile.png new file mode 100644 index 0000000..e74ab38 Binary files /dev/null and b/public/mobile.png differ diff --git a/src/app/(app)/page.tsx b/src/app/(app)/page.tsx index 7bc5eb0..6504f55 100644 --- a/src/app/(app)/page.tsx +++ b/src/app/(app)/page.tsx @@ -2,12 +2,14 @@ import FAQs from "@/components/faqs"; import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; import { MainView } from "@/components/main-view"; +import { PrimaryFeatures } from "@/components/primary-features"; export default function HomePage() { return ( <>
+