diff --git a/app/page.tsx b/app/page.tsx index 261a57a..4a724f3 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,7 +1,7 @@ import { Header } from '@/components/landing/LandingHeader'; -import { Hero } from '@/components/landing/HeroSection'; -import { Feature } from '@/components/landing/FeatureSection'; -import { Demo } from '@/components/landing/DemoPreview'; +import { Hero } from '@/components/landing/LandingHeroSection'; +import { Feature } from '@/components/landing/LandingFeature'; +import { Demo } from '@/components/landing/LandingPreview'; export default function Home() { return (
diff --git a/components/auth/AuthCard.tsx b/components/auth/AuthCard.tsx index 75020e6..36dd35b 100644 --- a/components/auth/AuthCard.tsx +++ b/components/auth/AuthCard.tsx @@ -1,3 +1,5 @@ +import Link from 'next/link'; + type Props = { title: string; description: string; @@ -7,10 +9,13 @@ type Props = { export function AuthCard({ title, description, children }: Props) { return (
-

+ </> DevFlow -

+

{title}

{description}

diff --git a/components/landing/PreviewContent.tsx b/components/landing/LandingContent.tsx similarity index 100% rename from components/landing/PreviewContent.tsx rename to components/landing/LandingContent.tsx diff --git a/components/landing/FeatureSection.tsx b/components/landing/LandingFeature.tsx similarity index 100% rename from components/landing/FeatureSection.tsx rename to components/landing/LandingFeature.tsx diff --git a/components/landing/LandingHeader.tsx b/components/landing/LandingHeader.tsx index 62b1b0e..9a2826d 100644 --- a/components/landing/LandingHeader.tsx +++ b/components/landing/LandingHeader.tsx @@ -1,17 +1,19 @@ +import Link from 'next/link'; + export function Header() { return ( -
-

+
+

</> DevFlow

-
- - +
); diff --git a/components/landing/HeroSection.tsx b/components/landing/LandingHeroSection.tsx similarity index 73% rename from components/landing/HeroSection.tsx rename to components/landing/LandingHeroSection.tsx index 568685f..c9842d1 100644 --- a/components/landing/HeroSection.tsx +++ b/components/landing/LandingHeroSection.tsx @@ -1,7 +1,7 @@ export function Hero() { return ( -
-

+

+

🚀 개발자를 위한 성장 플랫폼

매일 성장하는

diff --git a/components/landing/DemoPreview.tsx b/components/landing/LandingPreview.tsx similarity index 92% rename from components/landing/DemoPreview.tsx rename to components/landing/LandingPreview.tsx index f651982..d19e8a4 100644 --- a/components/landing/DemoPreview.tsx +++ b/components/landing/LandingPreview.tsx @@ -1,5 +1,5 @@ import Image from 'next/image'; -import { Contents } from '@/components/landing/PreviewContent'; +import { Contents } from '@/components/landing/LandingContent'; export function Demo() { return (