import type { Metadata } from "next";
import { LandingPage } from "@/components/features/landing/LandingPage";

export const metadata: Metadata = {
  title: "Home | SurveyStronghold",
  description:
    "Your data. Your fortress. Build surveys, control permissions, and benefit from human-owned data with enterprise-grade security.",
};

export default function HomePage() {
  return <LandingPage />;
}
