Add src/app/about/page.tsx
This commit is contained in:
39
src/app/about/page.tsx
Normal file
39
src/app/about/page.tsx
Normal file
@@ -0,0 +1,39 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "الرئيسية", id: "/" },
|
||||
{ name: "من نحن", id: "/about" },
|
||||
{ name: "خدماتنا", id: "/" },
|
||||
{ name: "تواصل معنا", id: "/" },
|
||||
]}
|
||||
brandName="Aljoman Dental"
|
||||
/>
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: 'text', content: "مهمتنا ورؤيتنا" }]}
|
||||
/>
|
||||
<TeamCardSix
|
||||
title="فريقنا الطبي المتميز"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
members={[]}
|
||||
/>
|
||||
<FooterLogoEmphasis
|
||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "من نحن", href: "/about" }] }]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user