From 4f764028dc36c3f4c79ad325cd3bdecc769bdd93 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:59:14 +0000 Subject: [PATCH 1/4] Add src/app/about/page.tsx --- src/app/about/page.tsx | 147 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 147 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..cd700a2 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,147 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import TextAbout from '@/components/sections/about/TextAbout'; +import TeamCardSix from '@/components/sections/team/TeamCardSix'; +import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Users } from 'lucide-react'; + +export default function AboutPage() { + const navItems = [ + { name: "Services", id: "services" }, + { name: "Processus", id: "how-it-works" }, + { name: "Avantages", id: "why-us" }, + { name: "Portfolio", id: "portfolio" }, + { name: "Tarifs", id: "/pricing" }, + { name: "À propos", id: "/about" }, + { name: "Contact", id: "contact" } + ]; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From df195baa35d7571b5ff7f46dbff9aa01a7d01a3c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:59:14 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 +------------------------------------------- 1 file changed, 8 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4526009..934ff40 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "AR Agency - Automatisation AI pour PME Tunisiennes", description: "Solutions d'automatisation AI pour restaurants, boutiques et agences de voyage. Sites web, agents WhatsApp, réservation automatisée. Livraison rapide, démo gratuite.", keywords: "automatisation AI Tunisie, chatbot WhatsApp, système réservation, site web AI, SME automation, business automation tunisia", metadataBase: new URL("https://ar-agency.tn"), - alternates: { - canonical: "https://ar-agency.tn" - }, - openGraph: { - title: "AR Agency - Automatisation AI pour PME", description: "Solutions d'automatisation AI conçues pour les PME tunisiennes. Livraison rapide, démo gratuite, support inclus.", siteName: "AR Agency", type: "website", url: "https://ar-agency.tn", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AciGvoDigUmzMgk3PnylSVK1dY/a-modern-professional-ai-dashboard-inter-1772898422231-4613cf05.png", alt: "AR Agency - Tableau de bord d'automatisation" - } - ] - }, - twitter: { - card: "summary_large_image", title: "AR Agency - Automatisation AI", description: "Solutions d'automatisation AI pour PME tunisiennes. Sites web, agents IA, réservation.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AciGvoDigUmzMgk3PnylSVK1dY/a-modern-professional-ai-dashboard-inter-1772898422231-4613cf05.png"] - } -}; + title: "AR Agency | Automatisation AI pour PME Tunisiennes", description: "Transformez votre business avec l'IA. Sites web, agents WhatsApp, systèmes de réservation et automatisation métier pour les PME tunisiennes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -