Update src/app/services/page.tsx
This commit is contained in:
@@ -1,22 +1,18 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function ServicesPage() {
|
||||
const navLinks = [{ name: "الرئيسية", id: "/" }, { name: "من نحن", id: "/about" }, { name: "خدماتنا", id: "/services" }, { name: "معرض الأعمال", id: "/portfolio" }, { name: "تواصل معنا", id: "/#contact" }];
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<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>
|
||||
<ul className="list-disc pl-6 space-y-4">
|
||||
<li><strong>ابتسامة هوليود:</strong> تصميم ابتسامتك الرقمية.</li>
|
||||
<li><strong>تبييض الأسنان:</strong> بأحدث التقنيات العالمية.</li>
|
||||
<li><strong>علاج العصب:</strong> تحت المجهر لنتائج دقيقة.</li>
|
||||
</ul>
|
||||
</main>
|
||||
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
|
||||
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeLargeTitles" background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="semibold">
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Aljoman Dental"
|
||||
button={{ text: "Contact", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user