Merge version_2 into main #4

Merged
bender merged 6 commits from version_2 into main 2026-02-24 07:19:43 +00:00
6 changed files with 68 additions and 1460 deletions

View File

@@ -31,16 +31,14 @@ export default function BlogPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Join Now", href: "#contact" }}
button={{ text: "Join Now", href: "/#contact" }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
navItemClassName="text-[var(--foreground)] hover:text-[var(--primary-cta)]"
/>
@@ -70,18 +68,16 @@ export default function BlogPage() {
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
{ label: "About", href: "/#about" },
{ label: "Features", href: "/#features" },
{ label: "Events", href: "/#events" },
{ label: "Products", href: "/products" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{

File diff suppressed because it is too large Load Diff

View File

@@ -30,16 +30,14 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Join Now", href: "#contact" }}
button={{ text: "Join Now", href: "/#contact" }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
navItemClassName="text-[var(--foreground)] hover:text-[var(--primary-cta)]"
/>
@@ -215,18 +213,16 @@ export default function LandingPage() {
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
{ label: "About", href: "/#about" },
{ label: "Features", href: "/#features" },
{ label: "Events", href: "/#events" },
{ label: "Products", href: "/products" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{

View File

@@ -28,16 +28,14 @@ export default function ProductsPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Join Now", href: "#contact" }}
button={{ text: "Join Now", href: "/#contact" }}
buttonClassName="bg-[var(--primary-cta)] text-[var(--primary-cta-text)] hover:bg-[var(--primary-cta)]"
navItemClassName="text-[var(--foreground)] hover:text-[var(--primary-cta)]"
/>
@@ -72,18 +70,16 @@ export default function ProductsPage() {
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
{ label: "About", href: "/#about" },
{ label: "Features", href: "/#features" },
{ label: "Events", href: "/#events" },
{ label: "Products", href: "/products" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{

View File

@@ -93,13 +93,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -134,13 +132,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -182,13 +178,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -238,18 +232,16 @@ function ProductPageContent({ params }: ProductPageProps) {
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
{ label: "About", href: "/#about" },
{ label: "Features", href: "/#features" },
{ label: "Events", href: "/#events" },
{ label: "Products", href: "/products" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{

View File

@@ -64,13 +64,11 @@ function ShopPageContent() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -104,13 +102,11 @@ function ShopPageContent() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
{ name: "Events", id: "/#events" },
{ name: "Products", id: "/products" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Events", id: "#events" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "#contact" }
{ name: "Contact", id: "/#contact" }
]}
brandName="Balero Chess Club"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
@@ -150,18 +146,16 @@ function ShopPageContent() {
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "#about" },
{ label: "Features", href: "#features" },
{ label: "Events", href: "#events" },
{ label: "Shop", href: "/shop" },
{ label: "Products", href: "/products" },
{ label: "Blog", href: "/blog" }
{ label: "About", href: "/#about" },
{ label: "Features", href: "/#features" },
{ label: "Events", href: "/#events" },
{ label: "Products", href: "/products" }
],
},
{
title: "Resources", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
{ label: "FAQ", href: "/#faq" },
{ label: "Contact", href: "/#contact" },
],
},
{