18 Commits

Author SHA1 Message Date
0d950eb8f8 Merge version_5 into main
Merge version_5 into main
2026-02-17 16:45:54 +00:00
5b690416a9 Update src/app/page.tsx 2026-02-17 16:45:49 +00:00
9cf716171d Update src/app/layout.tsx 2026-02-17 16:45:49 +00:00
9010cc01f5 Merge version_5 into main
Merge version_5 into main
2026-02-17 16:44:20 +00:00
c78a0f3831 Update src/app/page.tsx 2026-02-17 16:44:16 +00:00
d965b0a2d8 Update src/app/layout.tsx 2026-02-17 16:44:15 +00:00
7acd81e237 Merge version_4 into main
Merge version_4 into main
2026-02-17 16:35:30 +00:00
7c7d540c09 Update src/app/page.tsx 2026-02-17 16:35:26 +00:00
c842154ba3 Merge version_4 into main
Merge version_4 into main
2026-02-17 16:33:00 +00:00
63a50c726f Update src/app/page.tsx 2026-02-17 16:32:56 +00:00
1dfd077177 Merge version_4 into main
Merge version_4 into main
2026-02-17 16:30:41 +00:00
9923a8549e Update src/app/page.tsx 2026-02-17 16:30:37 +00:00
f34ff74614 Merge version_4 into main
Merge version_4 into main
2026-02-17 16:28:21 +00:00
366bd012ad Update src/app/shop/page.tsx 2026-02-17 16:28:17 +00:00
c4cbe5e66d Update src/app/shop/[id]/page.tsx 2026-02-17 16:28:16 +00:00
0cdb25fc36 Update src/app/page.tsx 2026-02-17 16:28:15 +00:00
9420c06195 Merge version_3 into main
Merge version_3 into main
2026-02-17 15:22:00 +00:00
2edb5cc7cb Merge version_3 into main
Merge version_3 into main
2026-02-17 15:19:31 +00:00
4 changed files with 21 additions and 45 deletions

View File

@@ -1,43 +1,22 @@
import type { Metadata } from "next";
import { Josefin_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "./styles/variables.css";
import "./styles/base.css";
const josefinSans = Josefin_Sans({
variable: "--font-josefin-sans", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Old Boy Domino Club - Join Our Community", description: "Join Old Boy Domino Club, a thriving 38+ year community of domino enthusiasts. Experience classic gaming, tournaments, and lifelong friendships.", keywords: "domino club, domino games, community gaming, tournaments, fellowship, classic games", openGraph: {
title: "Old Boy Domino Club", description: "Join our thriving community of domino enthusiasts since 1985", siteName: "Old Boy Domino Club", type: "website"
},
robots: {
index: true,
follow: true
}
};
title: "Old Boy Domino Club", description: "Join a thriving community of domino enthusiasts"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${josefinSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1290,7 +1269,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -2,13 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Dice6, Trophy, Heart, TrendingUp, Users, Mail, Phone, Facebook } from "lucide-react";
@@ -42,15 +42,18 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="Old Boy Domino Club"
<HeroSplit
title="Old Boy Domino Club"
description="Join a thriving community of domino enthusiasts where tradition meets fellowship. Experience the timeless joy of classic domino gaming with friends who share your passion."
buttons={[
{ text: "Join Our Club", href: "contact" },
{ text: "Learn More", href: "about" }
]}
background={{ variant: "sparkles-gradient" }}
imageSrc="https://img.b2bpic.net/free-photo/side-view-glass-tea-with-backgammon-jam-carpet-table_176474-3102.jpg"
imageAlt="Classic domino table game in session"
mediaAnimation="slide-up"
imagePosition="right"
/>
</div>
@@ -222,4 +225,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -90,8 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"About","id":"about"},
{"name":"Features","id":"features"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -138,8 +137,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"About","id":"about"},
{"name":"Features","id":"features"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -193,8 +191,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{"name":"About","id":"about"},
{"name":"Features","id":"features"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>

View File

@@ -40,8 +40,7 @@ export default function ShopPage() {
{"name":"About","id":"about"},
{"name":"Features","id":"features"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>
@@ -87,8 +86,7 @@ export default function ShopPage() {
{"name":"About","id":"about"},
{"name":"Features","id":"features"},
{"name":"Team","id":"team"},
{"name":"Contact","id":"contact"},
{"name":"Shop","id":"/shop"}
{"name":"Contact","id":"contact"}
]}
button={{ text: "Cart", onClick: () => console.log("cart") }}
/>