prepare hero content

This commit is contained in:
Timothy Pidashev
2024-03-18 23:18:38 -07:00
parent 773085b2e0
commit b37f35350b
2 changed files with 24 additions and 2 deletions

View File

@@ -1,11 +1,11 @@
// Imports // Imports
import { HeroSection1, HeroSection2, HeroSection3 } from "@/components/hero";
// Metadata // Metadata
// Exports // Exports
export default function Index() { export default function Index() {
return ( return (
<div> <div></div>
</div>
); );
} }

View File

@@ -0,0 +1,22 @@
"use client";
import { motion, AnimatePresence } from "framer-motion";
import { useState, useEffect } from "react";
function HeroSection1() {
}
function HeroSection2() {
}
function HeroSection3() {
}
export default function () {
HeroSection1,
HeroSection2,
HeroSection3
}