diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9738a3d..f18177a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1440 +1,34 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
+import { Tag } from "@/components/tag/Tag";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const montserrat = Montserrat({
- variable: "--font-montserrat",
- subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Rugby Club Cadaujacais | Club Rugby Local Convivial",
- description: "Club rugby communautaire à Cadaujac. Rejoignez notre école de rugby, équipe féminine, équipes masculines. 4.4★ Google - Accueil convivial et structuré.",
- keywords: "rugby, club rugby, Cadaujac, école de rugby, rugby féminin, sports, communauté, France",
- metadataBase: new URL("https://rugbycadaujacais.fr"),
- alternates: {
- canonical: "https://rugbycadaujacais.fr",
- },
- openGraph: {
- title: "Rugby Club Cadaujacais | Rejoignez Notre Communauté",
- description: "Club rugby local passionné. Académie de rugby, section féminine, équipes seniors. Convivialité et excellence sportive.",
- url: "https://rugbycadaujacais.fr",
- siteName: "Rugby Club Cadaujacais",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/men-playing-rugby-field_23-2150062038.jpg",
- alt: "Rugby Club Cadaujacais - Rugby players in action",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Rugby Club Cadaujacais",
- description: "Rejoignez notre club rugby passionné et accueillant à Cadaujac. Tous les âges et niveaux.",
- images: ["http://img.b2bpic.net/free-photo/men-playing-rugby-field_23-2150062038.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Rugby Club Cadaujacais", description: "Rugby Club Cadaujacais - A welcoming, structured club for all levels and ages. Passion, teamwork, inclusion and sporting excellence."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
+
+
{children}
-
+
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d7176ee..88cd61b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -18,7 +18,7 @@ export default function HomePage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Teams", id: "/teams" },
- { name: "Join", id: "/join" },
+ { name: "Shop", id: "/shop" },
{ name: "Contact", id: "/contact" },
];
@@ -135,8 +135,7 @@ export default function HomePage() {
"Sessions techniques", "Préparation physique", "Équipe coaching"],
},
{
- id: "3", value: "8+", title: "Événements Sociaux", items: [
- "Repas d'équipe", "Sorties groupe", "Célébrations"],
+ id: "3", value: "8+", title: "Événements Sociaux", items: ["Repas d'équipe", "Sorties groupe", "Célébrations"],
},
]}
animationType="slide-up"
@@ -201,4 +200,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx
new file mode 100644
index 0000000..c5b273a
--- /dev/null
+++ b/src/app/shop/page.tsx
@@ -0,0 +1,174 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
+import ProductCardThree from "@/components/sections/product/ProductCardThree";
+import ContactCTA from "@/components/sections/contact/ContactCTA";
+import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import { ShoppingCart, Zap } from "lucide-react";
+import { useState } from "react";
+
+export default function ShopPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "About", id: "/about" },
+ { name: "Teams", id: "/teams" },
+ { name: "Shop", id: "/shop" },
+ { name: "Contact", id: "/contact" },
+ ];
+
+ const [cart, setCart] = useState<{ [key: string]: number }>({});
+
+ const shopProducts = [
+ {
+ id: "jersey-home", name: "Maillot de Rugby - Domicile", price: "€45.00", imageSrc: "http://img.b2bpic.net/free-photo/male-rugby-player-standing-ground_23-2150034490.jpg", imageAlt: "Rugby jersey home", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ "jersey-home": quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "jersey-away", name: "Maillot de Rugby - Extérieur", price: "€45.00", imageSrc: "http://img.b2bpic.net/free-photo/american-football-player-uniform-training-field_23-2150034543.jpg", imageAlt: "Rugby jersey away", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ "jersey-away": quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "shorts", name: "Short de Rugby", price: "€35.00", imageSrc: "http://img.b2bpic.net/free-photo/fit-athletic-young-man-training_23-2147955631.jpg", imageAlt: "Rugby shorts", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ shorts: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "socks", name: "Chaussettes de Rugby (Paire)", price: "€12.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-athlete-feet-footwear_23-2150067338.jpg", imageAlt: "Rugby socks", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ socks: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "scarf", name: "Écharpe Club Cadaujacais", price: "€18.00", imageSrc: "http://img.b2bpic.net/free-photo/winter-accessories-isolated-white-background_23-2150067418.jpg", imageAlt: "Club scarf", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ scarf: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "cap", name: "Casquette Club Cadaujacais", price: "€22.00", imageSrc: "http://img.b2bpic.net/free-photo/baseball-cap-isolated-white_23-2150067428.jpg", imageAlt: "Club cap", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ cap: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "backpack", name: "Sac à Dos Club Cadaujacais", price: "€65.00", imageSrc: "http://img.b2bpic.net/free-photo/red-stylish-backpack-isolated-white-background_23-2150067435.jpg", imageAlt: "Club backpack", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ backpack: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ {
+ id: "bottle", name: "Gourde de Rugby - 750ml", price: "€28.00", imageSrc: "http://img.b2bpic.net/free-photo/water-bottle-isolated-white_23-2150067442.jpg", imageAlt: "Rugby water bottle", onQuantityChange: (quantity: number) => {
+ setCart((prev) => ({
+ ...prev,
+ bottle: quantity,
+ }));
+ },
+ initialQuantity: 1,
+ },
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index 92128b0..0e6781e 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
- --background: #f5f5f5;
- --card: #ffffff;
- --foreground: #1c1c1c;
- --primary-cta: #341f51;
+ --background: #1a0d0d;
+ --card: #2e1515;
+ --foreground: #ffe6e6;
+ --primary-cta: #d63031;
--primary-cta-text: #f5f5f5;
- --secondary-cta: #ffffff;
+ --secondary-cta: #1a0d0d;
--secondary-cta-text: #1c1c1c;
- --accent: #6139e6;
- --background-accent: #b3a8e8;
+ --accent: #8b2d2d;
+ --background-accent: #ff3d4a;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);