diff --git a/src/app/galerie/page.tsx b/src/app/galerie/page.tsx
index b539fc9..421352e 100644
--- a/src/app/galerie/page.tsx
+++ b/src/app/galerie/page.tsx
@@ -6,6 +6,7 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
+import { Star, Users } from "lucide-react";
export default function GaleriePage() {
const navItems = [
@@ -18,24 +19,21 @@ export default function GaleriePage() {
const footerColumns = [
{
- title: "Restaurant",
- items: [
+ title: "Restaurant", items: [
{ label: "Accueil", href: "/" },
{ label: "Menu", href: "#menu" },
{ label: "Galerie", href: "/galerie" },
],
},
{
- title: "Réservations",
- items: [
+ title: "Réservations", items: [
{ label: "Réserver une table", href: "/reservations" },
{ label: "Contact", href: "#contact" },
{ label: "Conditions", href: "#" },
],
},
{
- title: "Suivez-Nous",
- items: [
+ title: "Suivez-Nous", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "TripAdvisor", href: "https://tripadvisor.com" },
@@ -50,7 +48,7 @@ export default function GaleriePage() {
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSmall"
- background="aurora"
+ background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
@@ -69,70 +67,28 @@ export default function GaleriePage() {
@@ -127,15 +102,10 @@ export default function HomePage() {