Merge version_2 into main #1

Merged
mulika-local merged 2 commits from version_2 into main 2025-12-23 15:20:44 +00:00
2 changed files with 40 additions and 3 deletions

View File

@@ -1260,4 +1260,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -10,6 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import BlogCardFive from '@/components/sections/blog/BlogCardFive';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import TestimonialCardFour from '@/components/sections/testimonial/TestimonialCardFour';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function StarWarsPage() {
@@ -192,6 +193,42 @@ export default function StarWarsPage() {
/>
</div>
<div id="testimonials-four" data-section="testimonials-four">
<TestimonialCardFour
testimonials={[
{
id: "1",
name: "Alex J.",
role: "Star Wars Enthusiast",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502912600-84fr3x4z.jpg",
content: "This community has been incredible for connecting with other fans and sharing our passion."
},
{
id: "2",
name: "Sarah K.",
role: "Collector & Fan",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502913367-8j5yog7q.jpg",
content: "The events and discussions here are top-notch. I've made so many friends who share my love for Star Wars."
},
{
id: "3",
name: "Michael T.",
role: "Content Creator",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502914201-sdgv9pae.jpg",
content: "An amazing platform to share fan theories and connect with a supportive community."
},
{
id: "4",
name: "Emma R.",
role: "Long-Time Fan",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502914968-w4h9h050.jpg",
content: "The best Star Wars community I've found. Everyone is welcoming and enthusiastic."
}
]}
useInvertedBackground="noInvert"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Star Wars Fans"
@@ -225,4 +262,4 @@ export default function StarWarsPage() {
</div>
</ThemeProvider>
);
}
}