inital commit

This commit is contained in:
2026-05-17 18:29:30 -05:00
parent b827236fe2
commit 7c1e18bd59
4683 changed files with 159402 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
import Layout from "../components/layout/Layout";
import "../styles/globals.css";
import { motion, AnimatePresence } from "framer-motion";
function MyApp({ Component, pageProps, router }) {
return (
<AnimatePresence>
<motion.div
key={router.route}
initial="pageInitial"
animate="pageAnimate"
exit="pageExit"
variants={{
pageInitial: {
opacity: 0,
},
pageAnimate: {
opacity: 1,
},
pageExit: {
opacity: 0,
},
}}
>
<Layout>
<Component {...pageProps} />
</Layout>
</motion.div>
</AnimatePresence>
);
}
export default MyApp;

View File

@@ -0,0 +1,26 @@
import React from 'react';
import BookSeat from '../../components/about/BookSeat';
import GlobalBusiness from '../../components/about/GlobalBusiness';
import TopBanner from '../../components/banner/TopBanner';
import Event from '../../components/event/Event';
import Team from '../../components/team/Team';
import Statics from '../../components/statics/Statics'
import Head from 'next/head';
const About = () => {
return (
<>
<Head>
<title>About</title>
</Head>
<TopBanner text="About Us" indicator="About Us" />
<GlobalBusiness />
<Team />
<Event />
<BookSeat />
<Statics />
</>
);
};
export default About;

View File

@@ -0,0 +1,5 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
export default function handler(req, res) {
res.status(200).json({ name: 'John Doe' })
}

View File

@@ -0,0 +1,20 @@
import Head from "next/head";
import React from "react";
import TopBanner from "../../components/banner/TopBanner";
import ContactForm from "../../components/contact/ContactForm";
import ContactInfo from "../../components/contact/ContactInfo";
const Contact = () => {
return (
<>
<Head>
<title>Contact</title>
</Head>
<TopBanner text="Contact Us" indicator="Pages → Contact Us" />
<ContactInfo />
<ContactForm />
</>
);
};
export default Contact;

View File

@@ -0,0 +1,18 @@
import Head from "next/head";
import React from "react";
import TopBanner from "../../components/banner/TopBanner";
import GalleryPage from "../../components/gallery/GalleryPage";
const gallary = () => {
return (
<>
<Head>
<title>Gallery</title>
</Head>
<TopBanner text="Gallery" indicator="Pages → Gallery" />
<GalleryPage />
</>
);
};
export default gallary;

View File

@@ -0,0 +1,33 @@
import Head from "next/head";
import About from "../components/about/About";
import Banner from "../components/banner/Banner";
import Conference from "../components/conference/Conference";
import Event from "../components/event/Event";
import Gallery from "../components/gallery/Gallery";
import Pricing from "../components/pricing/Pricing";
import Statics from "../components/statics/Statics";
import Team from "../components/team/Team";
import Review from '../components/review/Review'
export default function Home() {
return (
<>
<Head>
<title>Veltio | Event Management website</title>
<meta name="description" content="Generated by create next app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<Banner />
<About />
<Statics />
<Team />
<Event />
<Conference />
<Pricing />
<Gallery />
<Review />
</>
);
}

View File

@@ -0,0 +1,20 @@
import Head from "next/head";
import React from "react";
import TopBanner from "../../components/banner/TopBanner";
import EventPricing from "../../components/event/EventPricing";
import PricePlan from "../../components/pricing/PricePlan";
const Price = () => {
return (
<>
<Head>
<title>Pricing</title>
</Head>
<TopBanner text="Price Plan" indicator="Pages → Pricing" />
<PricePlan />
<EventPricing />
</>
);
};
export default Price;

View File

@@ -0,0 +1,18 @@
import Head from "next/head";
import React from "react";
import TopBanner from "../../components/banner/TopBanner";
import Conference from "../../components/conference/Conference";
const Schedule = () => {
return (
<>
<Head>
<title>Schedule</title>
</Head>
<TopBanner text="Schedule" indicator="Schedule" />
<Conference />
</>
);
};
export default Schedule;

View File

@@ -0,0 +1,19 @@
import Head from "next/head";
import TopBanner from "../../components/banner/TopBanner";
import Statics from "../../components/statics/Statics";
import SpeakerDetails from "../../components/team/SpeakerDetails";
const Speakers = () => {
return (
<>
<Head>
<title>Speaker Details</title>
</Head>
<TopBanner text="Speakers Single" indicator="Pages → Speakers" />
<SpeakerDetails />
<Statics />
</>
);
};
export default Speakers;

View File

@@ -0,0 +1,18 @@
import Head from "next/head";
import React from "react";
import TopBanner from "../../components/banner/TopBanner";
import TeamAll from "../../components/team/TeamAll";
const Speakers = () => {
return (
<>
<Head>
<title>Speakers</title>
</Head>
<TopBanner text="Speakers" indicator="Pages → Speakers" />
<TeamAll />
</>
);
};
export default Speakers;