diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c980c50 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,72 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function AboutPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Features', id: '/#features' }, + { name: 'Showcase', id: '/#product' }, + { name: 'News', id: '/blog' }, + { name: 'Shop', id: '/shop' }, + { name: 'Team', id: '/#team' }, + { name: 'Contact', id: '/#contact' } + ]; + + const footerColumns = [ + { items: [{ label: 'About Us', href: '/about' }, { label: 'Features', href: '#features' }, { label: 'News', href: '/blog' }] }, + { items: [{ label: 'Community', href: '#product' }, { label: 'Team', href: '#team' }, { label: 'FAQ', href: '#faq' }] }, + { items: [{ label: 'Contact', href: '#contact' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }] } + ]; + + return ( + + + +
+
+

+ Our Community: United by the Force +

+

+ Welcome to the heart of the Star Wars Fan Club – our vibrant and growing community! + We are a diverse group of enthusiasts from across the galaxy, united by a shared + passion for the epic sagas, compelling characters, and rich lore of Star Wars. + Here, you'll find fellow fans eager to discuss theories, share fan art, celebrate + milestones, and relive iconic moments. Whether you're a seasoned Jedi Master or + a curious Padawan, there's a place for you to connect, engage, and deepen your + love for a galaxy far, far away. Join us as we explore new horizons, debate the + mysteries of the Force, and keep the spirit of Star Wars alive! +

+
+
+ + +
+ ); +} diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e585567..3b6997f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,6 +10,23 @@ import BlogCardThree from "@/components/sections/blog/BlogCardThree"; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About', id: '/about' }, + { name: 'Features', id: '/#features' }, + { name: 'Showcase', id: '/#product' }, + { name: 'News', id: '/blog' }, + { name: 'Shop', id: '/shop' }, + { name: 'Team', id: '/#team' }, + { name: 'Contact', id: '/#contact' } + ]; + + const footerColumns = [ + { items: [{ label: 'About Us', href: '/about' }, { label: 'Features', href: '#features' }, { label: 'News', href: '/blog' }] }, + { items: [{ label: 'Community', href: '#product' }, { label: 'Team', href: '#team' }, { label: 'FAQ', href: '#faq' }] }, + { items: [{ label: 'Contact', href: '#contact' }, { label: 'Privacy Policy', href: '#' }, { label: 'Terms of Service', href: '#' }] } + ]; + return ( @@ -57,11 +65,7 @@ export default function BlogPage() { )}
@@ -62,7 +70,7 @@ export default function LandingPage() { title="Unite the Fandom" description="From the original trilogy to the latest series, our club is a gathering place for every Star Wars enthusiast. Share theories, debate iconic moments, and immerse yourself in a community that understands the Force." tag="About Our Club" - buttons={[{ text: 'Our Mission', href: '#' }]} + buttons={[{ text: 'Our Mission', href: '/about' }]} imageSrc="https://img.b2bpic.net/free-photo/fencing_654080-2262.jpg" imageAlt="Group of Star Wars fans at a convention" useInvertedBackground={false} @@ -170,7 +178,7 @@ export default function LandingPage() { @@ -123,16 +131,7 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -169,16 +168,7 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -220,11 +210,7 @@ export default function ProductPage({ params }: ProductPageProps) {
@@ -97,16 +105,7 @@ export default function ShopPage() { @@ -138,11 +137,7 @@ export default function ShopPage() {