aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/pages/pack-home/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/components/pages/pack-home/index.tsx')
-rw-r--r--docs/components/pages/pack-home/index.tsx24
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/components/pages/pack-home/index.tsx b/docs/components/pages/pack-home/index.tsx
new file mode 100644
index 0000000..db73b25
--- /dev/null
+++ b/docs/components/pages/pack-home/index.tsx
@@ -0,0 +1,24 @@
+import { PackBenchmarks } from "./PackBenchmarks";
+import { PackHero } from "./PackHero";
+import { PackLetter } from "./PackLetter";
+import { PackFeatures } from "./PackFeatures";
+import { GradientSectionBorder } from "../home-shared/GradientSectionBorder";
+import { LandingPageGlobalStyles } from "../home-shared/GlobalStyles";
+
+export default function Home() {
+ return (
+ <>
+ <LandingPageGlobalStyles />
+ <main className="relative">
+ <PackHero />
+ <GradientSectionBorder>
+ <PackBenchmarks />
+ <PackFeatures />
+ </GradientSectionBorder>
+ <GradientSectionBorder>
+ <PackLetter />
+ </GradientSectionBorder>
+ </main>
+ </>
+ );
+}