Update src/app/portfolio/page.tsx
This commit is contained in:
@@ -1,39 +1,22 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function PortfolioPage() {
|
||||
const navLinks = [{ name: "الرئيسية", id: "/" }, { name: "من نحن", id: "/about" }, { name: "خدماتنا", id: "/services" }, { name: "معرض الأعمال", id: "/portfolio" }, { name: "تواصل معنا", id: "/#contact" }];
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "الرئيسية", id: "/" },
|
||||
{ name: "الخدمات", id: "/services" },
|
||||
{ name: "المعرض", id: "/portfolio" },
|
||||
{ name: "تواصل معنا", id: "/#contact" }
|
||||
]}
|
||||
brandName="Aljoman Dental"
|
||||
/>
|
||||
<div className="pt-32">
|
||||
<TestimonialCardOne
|
||||
title="حالات سريرية متميزة"
|
||||
description="شاهد نتائج تحول ابتسامة مرضانا بعد العناية في عيادتنا."
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{ id: "c1", name: "تبييض الأسنان", role: "قبل وبعد", company: "نتائج فورية", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042930.jpg" },
|
||||
{ id: "c2", name: "فينير التجميلي", role: "قبل وبعد", company: "ابتسامة مشرقة", imageSrc: "http://img.b2bpic.net/free-photo/patient-pov-stomatologist-putting-oxigen-mask-before-tooth-surgery-sitting-stomatological-chair-doctor-nurse-working-modern-orthodontic-office-wearing-protection-mask-gloves_482257-13133.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoEmphasis
|
||||
columns={[{ items: [{ label: "الرئيسية", href: "/" }, { label: "الخدمات", href: "/services" }, { label: "المعرض", href: "/portfolio" }] }]}
|
||||
logoText="عيادات الجومان"
|
||||
/>
|
||||
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
|
||||
<main className="pt-32 pb-20 px-6 max-w-4xl mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">معرض الأعمال</h1>
|
||||
<p className="mb-8">استكشف نتائج الابتسامات التي صممناها لمئات المرضى.</p>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
|
||||
<div className="bg-gray-100 p-6 rounded-lg">قبل وبعد: تبييض احترافي</div>
|
||||
<div className="bg-gray-100 p-6 rounded-lg">قبل وبعد: عدسات اللومينير</div>
|
||||
</div>
|
||||
</main>
|
||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user