fix: update Dockerfile and remove .next from git

This commit is contained in:
2026-01-14 18:49:57 +00:00
parent 91fc911523
commit ed2c303d6f
252 changed files with 1537 additions and 10866 deletions

View File

@@ -0,0 +1,16 @@
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
export default function MarketingLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<>
<Navbar />
{children}
<Footer />
</>
);
}

17
app/(marketing)/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
"use client";
import Hero from '@/components/Hero';
import Features from '@/components/Features';
import HowItWorks from '@/components/HowItWorks';
import CallToAction from '@/components/CallToAction';
export default function Home() {
return (
<main>
<Hero />
<Features />
<HowItWorks />
<CallToAction />
</main>
);
}

View File

@@ -0,0 +1,11 @@
"use client";
import PrivacyPolicy from '@/components/PrivacyPolicy';
export default function Privacy() {
return (
<main>
<PrivacyPolicy />
</main>
);
}