ameerazampixis's picture
new
06a7653
raw
history blame
No virus
563 Bytes
// 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 /> */}
</>
);
}