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, 0 insertions, 24 deletions
diff --git a/docs/components/pages/pack-home/index.tsx b/docs/components/pages/pack-home/index.tsx
deleted file mode 100644
index d08443b..0000000
--- a/docs/components/pages/pack-home/index.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-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 HydroRollTRPGHome() {
- return (
- <>
- <LandingPageGlobalStyles />
- <main className="relative">
- <PackHero />
- <GradientSectionBorder>
- <PackBenchmarks />
- <PackFeatures />
- </GradientSectionBorder>
- <GradientSectionBorder>
- <PackLetter />
- </GradientSectionBorder>
- </main>
- </>
- );
-}