Add src/app/news/page.tsx

This commit is contained in:
2026-04-28 12:40:02 +00:00
parent d3594071ed
commit ccaf49f7bf

66
src/app/news/page.tsx Normal file
View File

@@ -0,0 +1,66 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function NewsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="aurora"
cardStyle="inset"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="solid"
headingFontWeight="light"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Accueil", id: "/" },
{ name: "L'Office", id: "/office" },
{ name: "Domaines d'intervention", id: "/domaines" },
{ name: "Actualités", id: "/news" },
{ name: "Contact", id: "/contact" },
]}
brandName="GEMINBONNET, CHICHE et MORLAY"
/>
<div id="blog" data-section="blog" style={{ paddingTop: '80px', paddingBottom: '80px' }}>
<BlogCardOne
title="Actualités Notariales"
description="Retrouvez nos derniers articles pour mieux comprendre vos droits et démarches."
animationType="slide-up"
textboxLayout="default"
blogs={[
{
id: "1", category: "Droit Immobilier", title: "Les étapes d'un achat immobilier", excerpt: "Découvrez les étapes clés, du compromis de vente à l'acte authentique final.", imageSrc: "https://img.b2bpic.net/free-photo/house-key-wooden-table_23-2148767980.jpg", authorName: "Notaires Associés", authorAvatar: "https://img.b2bpic.net/free-photo/mature-businesswoman-smiling_23-2148855673.jpg", date: "10 Mai 2024"
},
{
id: "2", category: "Droit de la famille", title: "Préparer sa succession", excerpt: "L'importance de la donation au dernier vivant et du testament pour protéger ses proches.", imageSrc: "https://img.b2bpic.net/free-photo/family-hands-together_23-2148767980.jpg", authorName: "Notaires Associés", authorAvatar: "https://img.b2bpic.net/free-photo/mature-businesswoman-smiling_23-2148855673.jpg", date: "05 Avril 2024"
},
{
id: "3", category: "Patrimoine", title: "Gérer son patrimoine efficacement", excerpt: "Conseils sur les régimes matrimoniaux et la gestion des actifs au quotidien.", imageSrc: "https://img.b2bpic.net/free-photo/financial-graph-calculator_23-2148767980.jpg", authorName: "Notaires Associés", authorAvatar: "https://img.b2bpic.net/free-photo/mature-businesswoman-smiling_23-2148855673.jpg", date: "15 Mars 2024"
}
]}
/>
</div>
<FooterSimple
columns={[
{ title: "Office", items: [{ label: "À propos", href: "/office" }, { label: "Contact", href: "/contact" }] },
{ title: "Légal", items: [{ label: "Mentions Légales", href: "#" }, { label: "RGPD", href: "#" }] },
]}
bottomLeftText="GEMINBONNET, CHICHE et MORLAY - Notaires"
bottomRightText="© 2024"
/>
</ReactLenis>
</ThemeProvider>
);
}