aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/pages/AI-home/index.tsx
blob: b65040c089f9729b28e3e2d1b9b06188f2b589ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { AIHero } from "./AIHero";
import { AIFeatures } from "./AIFeatures";
import { AILetter } from "./AILetter";
import { GradientSectionBorder } from "../home-shared/GradientSectionBorder";
import { LandingPageGlobalStyles } from "../home-shared/GlobalStyles";

export default function HydroRollAIHome() {
  return (
    <>
      <LandingPageGlobalStyles />
      <main className="relative">
        <AIHero />
        <GradientSectionBorder>
          <AIFeatures />
        </GradientSectionBorder>
        <GradientSectionBorder>
          <AILetter />
        </GradientSectionBorder>
      </main>
    </>
  );
}