Spaces:
Running
Running
File size: 563 Bytes
06a7653 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
// components
// sections
// import Hero from "./hero";
// import SponsoredBy from "./sponsored-by";
import Navbar from "@/components/navbar";
import AboutEvent from "./about-event";
import OurStats from "./our-stats";
// import EventContent from "./event-content";
// import Faq from "./faq";
export default function Portfolio() {
return (
<>
<Navbar />
{/* <Hero /> */}
{/* <SponsoredBy /> */}
<AboutEvent />
{/* <OurStats /> */}
{/* <EventContent /> */}
{/* <Faq /> */}
{/* <Footer /> */}
</>
);
}
|