Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-03-07 14:04:59 +00:00

View File

@@ -10,6 +10,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Gamepad2, Star, Grid } from 'lucide-react';
import Link from 'next/link';
export default function HomePage() {
const navItems = [
@@ -59,8 +60,31 @@ export default function HomePage() {
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="GameGuide"
brandName="GuideForge"
navItems={navItems}
logo={
<Link href="/" className="flex items-center gap-2 no-underline">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className="text-primary-cta"
>
{/* Stylized game controller icon with modern gaming aesthetic */}
<path
d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"
fill="currentColor"
/>
<path
d="M9 11c-0.55 0-1 0.45-1 1s0.45 1 1 1 1-0.45 1-1-0.45-1-1-1zm6 0c-0.55 0-1 0.45-1 1s0.45 1 1 1 1-0.45 1-1-0.45-1-1-1zm-3 3c0.55 0 1-0.45 1-1s-0.45-1-1-1-1 0.45-1 1 0.45 1 1 1z"
fill="currentColor"
/>
</svg>
<span className="font-bold text-lg text-foreground">GuideForge</span>
</Link>
}
/>
</div>