fix: update Dockerfile and remove .next from git
This commit is contained in:
16
app/(marketing)/layout.tsx
Normal file
16
app/(marketing)/layout.tsx
Normal 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
17
app/(marketing)/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
11
app/(marketing)/privacy/page.tsx
Normal file
11
app/(marketing)/privacy/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
"use client";
|
||||
|
||||
import PrivacyPolicy from '@/components/PrivacyPolicy';
|
||||
|
||||
export default function Privacy() {
|
||||
return (
|
||||
<main>
|
||||
<PrivacyPolicy />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user