mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
prepare hero content
This commit is contained in:
@@ -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>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
22
src/web/src/components/hero.jsx
Normal file
22
src/web/src/components/hero.jsx
Normal 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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user