18 lines
414 B
TypeScript
18 lines
414 B
TypeScript
import { Hero } from "./components/Hero";
|
|
import { Tagline } from "./components/Tagline";
|
|
import { About } from "./components/About";
|
|
import { FullbleedImage } from "./components/FullbleedImage";
|
|
import { Services } from "./components/Services";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main>
|
|
<Hero />
|
|
<Tagline />
|
|
<About />
|
|
<FullbleedImage />
|
|
<Services />
|
|
</main>
|
|
);
|
|
}
|