diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e7d9ea6..1c94159 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,16 +1,26 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function AboutPage() { - const navItems = [{ name: "Accueil", id: "/" }, { name: "À propos", id: "/about" }, { name: "Tarifs", id: "/pricing" }]; - return ( - - - - - ); + const navItems = [{ name: "Accueil", id: "/" }, { name: "Fonctionnalités", id: "/fonctionnalites" }, { name: "Tarifs", id: "/tarifs" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "/contact" }, { name: "Blog", id: "/blog" }, { name: "Mentions Légales", id: "/legal" }, { name: "À propos", id: "/about" }, { name: "Équipe", id: "/team" }]; + + return ( + + +
+ +
+ +
+ ); } \ No newline at end of file diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 0a639ff..8e34719 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,14 +1,33 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import BlogCardOne from "@/components/sections/blog/BlogCardOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; export default function BlogPage() { - return ( - - -
Blog
-
- ); + const navItems = [{ name: "Accueil", id: "/" }, { name: "Fonctionnalités", id: "/fonctionnalites" }, { name: "Tarifs", id: "/tarifs" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "/contact" }, { name: "Blog", id: "/blog" }, { name: "Mentions Légales", id: "/legal" }, { name: "À propos", id: "/about" }, { name: "Équipe", id: "/team" }]; + + return ( + + +
+ +
+
+ +
+ +
+ ); } \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..a72ce6d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,25 @@ +"use client"; + +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const navItems = [{ name: "Accueil", id: "/" }, { name: "Fonctionnalités", id: "/fonctionnalites" }, { name: "Tarifs", id: "/tarifs" }, { name: "FAQ", id: "/faq" }, { name: "Contact", id: "/contact" }, { name: "Blog", id: "/blog" }, { name: "Mentions Légales", id: "/legal" }, { name: "À propos", id: "/about" }, { name: "Équipe", id: "/team" }]; + + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index fc6beec..780d5c3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -148,11 +148,11 @@ export default function FacturProLanding() { columns={[ { title: "Produit", items: [{ label: "Fonctionnalités", href: "/fonctionnalites" }, { label: "Tarifs", href: "/tarifs" }] }, { title: "Légal", items: [{ label: "Mentions légales", href: "/legal" }, { label: "CGU", href: "/legal" }] }, - { title: "Ressources", items: [{ label: "Blog", href: "/blog" }, { label: "Guide réforme", href: "#" }] }, + { title: "Ressources", items: [{ label: "Blog", href: "/blog" }, { label: "Guide réforme", href: "/guide" }] }, { title: "Contact", items: [{ label: "Support", href: "#" }, { label: "Email", href: "/contact" }] } ]} /> ); -} \ No newline at end of file +}