Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-04-22 20:08:14 +00:00

View File

@@ -4,10 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() {
export default function TicketsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,124 +25,31 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Program",
id: "/program",
},
{
name: "Tickets",
id: "/tickets",
},
{ name: "Home", id: "/" },
{ name: "Program", id: "/program" },
{ name: "Tickets", id: "/tickets" },
]}
brandName="Comicon Fair"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardTwo
<PricingCardFive
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
plans={[
{
id: "day-pass",
badge: "Popular",
price: "$45",
subtitle: "Single day entry",
buttons: [
{
text: "Buy Now",
href: "#",
},
],
features: [
"Full floor access",
"All panels",
],
id: "day-pass", tag: "Popular", price: "€15", period: "per day", description: "Single day entry to all areas and main stages.", button: { text: "Buy on Comicon Official", href: "https://www.comicon.it/" },
featuresTitle: "Included", features: ["Access to all pavilions", "Main stages access", "Cosplay contests entry"]
},
{
id: "weekend-pass",
badge: "Best Value",
price: "$120",
subtitle: "Full weekend entry",
buttons: [
{
text: "Buy Now",
href: "#",
},
],
features: [
"Full floor access",
"All panels",
"Early entry",
],
},
{
id: "vip-pass",
badge: "VIP",
price: "$350",
subtitle: "Premium access",
buttons: [
{
text: "Buy Now",
href: "#",
},
],
features: [
"Priority seating",
"Exclusive meet & greet",
"VIP lounge access",
],
},
]}
title="Buy Your Tickets"
description="Secure your spot at the most anticipated event of the year."
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardSixteen
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="What Fans Are Saying"
description="Hear from our passionate community."
testimonials={[
{
id: "t1",
name: "Sarah J.",
role: "Fan",
company: "Cosplay Group",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-tickets-medium-shot_23-2149704922.jpg",
},
{
id: "t2",
name: "Mike B.",
role: "Collector",
company: "Action Toy Fans",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-tombola-tickets-front-view_23-2149704897.jpg",
},
]}
kpiItems={[
{
value: "99%",
label: "Happy Fans",
},
{
value: "500+",
label: "Volunteers",
},
{
value: "12",
label: "Years Running",
id: "weekend-pass", tag: "Best Value", price: "€35", period: "4 days", description: "Full experience pass for the entire event.", button: { text: "Buy on Comicon Official", href: "https://www.comicon.it/" },
featuresTitle: "Included", features: ["Full 4-day access", "All panels and events", "Express entrance"]
},
]}
title="Official Comicon Tickets"
description="Secure your access via the official Comicon ticketing platform."
/>
</div>
@@ -150,33 +57,16 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Navigate",
items: [
{
label: "Home",
href: "/",
},
{
label: "Program",
href: "/program",
},
{
label: "Tickets",
href: "/tickets",
},
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "Program", href: "/program" },
{ label: "Tickets", href: "/tickets" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}
@@ -186,4 +76,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}