-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpage.tsx
More file actions
46 lines (44 loc) · 1.28 KB
/
page.tsx
File metadata and controls
46 lines (44 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import {
HeaderNavigation,
HeroSection,
FeaturesSection,
HowItWorksSection,
PricingSection,
Footer
} from "@/components/landing";
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'CodeGuide - Development Made Simple',
description: 'The ultimate full-stack development platform with everything you need to build, deploy, and scale modern web applications.',
keywords: ['development', 'fullstack', 'TypeScript', 'React', 'Next.js', 'AI'],
openGraph: {
title: 'CodeGuide - Development Made Simple',
description: 'Build better apps, ship faster with our comprehensive development platform.',
type: 'website',
},
twitter: {
card: 'summary_large_image',
title: 'CodeGuide - Development Made Simple',
description: 'Build better apps, ship faster with our comprehensive development platform.',
}
};
export default function Home() {
return (
<div className="min-h-screen">
<HeaderNavigation />
<main>
<HeroSection />
<section id="features">
<FeaturesSection />
</section>
<section id="how-it-works">
<HowItWorksSection />
</section>
<section id="pricing">
<PricingSection />
</section>
</main>
<Footer />
</div>
);
}