Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/app/(flagship)/alexaverse-v2/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
Inter,
Montserrat
} from "next/font/google";
import { Toaster } from "@/components/ui/toaster";

const nunito = Nunito({
subsets: ["latin"],
Expand Down Expand Up @@ -83,6 +84,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
</head>
<body className="min-h-screen bg-dark_bg font-sans">
{children}
<Toaster />
</body>
</html>
);
Expand Down
60 changes: 56 additions & 4 deletions src/app/(flagship)/alexaverse-v2/page.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,71 @@
"use client";

import { motion } from "framer-motion";
import HeroSection from "@/components/alexaverse-v2/HeroSection";
import OurEvents from "@/components/alexaverse-v2/OurEvents";
// import Sponsers from "@/components/alexaverse-v2/Sponsers"
import ContactUs from "@/components/alexaverse-v2/ContactUs"

export default function AlexaVersePage() {
return (
<main>
<motion.main
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 0.8 }}
className="relative overflow-hidden"
>
{/* Animated background gradient */}
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
transition={{ duration: 2 }}
className="fixed inset-0 bg-gradient-to-br from-[#030645] via-[#1A052A] to-[#511e5b]"
style={{
background: `
radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%),
linear-gradient(to bottom right, #030645, #1A052A, #511e5b)
`
}}
/>

{/* Floating particles effect */}
<div className="fixed inset-0 overflow-hidden pointer-events-none">
{[...Array(20)].map((_, i) => (
<motion.div
key={i}
className="absolute w-1 h-1 bg-white rounded-full opacity-20"
initial={{
x: Math.random() * window.innerWidth,
y: Math.random() * window.innerHeight,
}}
animate={{
y: [null, -100],
opacity: [0.2, 0.8, 0.2],
}}
transition={{
duration: Math.random() * 10 + 10,
repeat: Infinity,
ease: "linear",
delay: Math.random() * 5,
}}
/>
))}
</div>

<HeroSection />
<div className="bg-gradient-to-br from-[#030645] via-[#1A052A] to-[#511e5b]">

<motion.div
initial={{ opacity: 0, y: 50 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 1, delay: 0.5 }}
className="relative z-10"
>
<OurEvents />
{/* <Sponsers /> */}
<ContactUs />
</div>
</main>
</motion.div>
</motion.main>
);
}
Loading