diff --git a/src/app/(marketing)/page.tsx b/src/app/(marketing)/page.tsx index 4f23741..063b727 100644 --- a/src/app/(marketing)/page.tsx +++ b/src/app/(marketing)/page.tsx @@ -1,6 +1,7 @@ import { LandingFeaturesSection2 } from "@/components/landing/LandingFeatureSection2"; import { LandingFeaturesSection1 } from "@/components/landing/LandingFeaturesSection1"; import { LandingHeroSection } from "@/components/landing/LandingHeroSection"; +import { LandingSpecialFeaturesSection } from "@/components/landing/LandingSpecialFeaturesSection"; export const revalidate = 21600; @@ -10,6 +11,7 @@ export default function Home() { + ); } diff --git a/src/components/landing/LandingFooter.tsx b/src/components/landing/LandingFooter.tsx index d55070b..56ada11 100644 --- a/src/components/landing/LandingFooter.tsx +++ b/src/components/landing/LandingFooter.tsx @@ -1,27 +1,15 @@ +import { PRODUCTLINKS, SUPPORTLINKS } from "@/lib/constants"; import { cn } from "@/lib/utils"; -import { FooterLink } from "@/types/landing"; import Image from "next/image"; import Link from "next/link"; import { LandingCopyright } from "./LandingCopyright"; import { LandingFooterColumn } from "./LandingFooterColumn"; export function LandingFooter() { - const productLinks: FooterLink[] = [ - { label: "기능 소개", href: "/features" }, - { label: "요금제", href: "/pricing" }, - { label: "업데이트", href: "/changelog" }, - ]; - - const supportLinks: FooterLink[] = [ - { label: "FAQ", href: "/faq" }, - { label: "문의하기", href: "/support" }, - { label: "개인정보처리방침", href: "/privacy" }, - ]; - return (