-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
148 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,144 @@ | ||
import "./globals.css"; | ||
import NavBar from "./components/NavBar"; | ||
import { Phone, Mail, MapPin,Facebook,Instagram,Twitter } from 'lucide-react'; | ||
import localFont from 'next/font/local'; | ||
import Link from 'next/link'; | ||
import { | ||
Phone, | ||
Mail, | ||
MapPin, | ||
Facebook, | ||
Instagram, | ||
Twitter, | ||
} from "lucide-react"; | ||
import localFont from "next/font/local"; | ||
import Link from "next/link"; | ||
|
||
const notio =localFont({ | ||
src:[ | ||
{ | ||
path:'./fonts/NotoSans-Regular.ttf', | ||
weight:'400', | ||
style:'regular' | ||
}, | ||
{ | ||
path:'./fonts/NotoSans-Italic.ttf', | ||
weight:'400', | ||
style:'italic' | ||
} | ||
],variable: '--font-notio', | ||
}) | ||
const notio = localFont({ | ||
src: [ | ||
{ | ||
path: "./fonts/NotoSans-Regular.ttf", | ||
weight: "400", | ||
style: "regular", | ||
}, | ||
{ | ||
path: "./fonts/NotoSans-Italic.ttf", | ||
weight: "400", | ||
style: "italic", | ||
}, | ||
], | ||
variable: "--font-notio", | ||
}); | ||
|
||
export const metadata ={ | ||
title:"Dubai Pool Company Website", | ||
description:"We are your friendly Dubai Pool Company. Offering services from design and construction to maintenance and safety." | ||
} | ||
export const metadata = { | ||
title: "Dubai Pool Company Website", | ||
description: | ||
"We are your friendly Dubai Pool Company. Offering services from design and construction to maintenance and safety.", | ||
metadataBase: new URL("https://dubaipools.com"), | ||
alternates: { | ||
canonical: "./", | ||
}, | ||
}; | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode; | ||
}>) { | ||
return ( | ||
<html lang="en" className={`${notio.className}`}> | ||
<body className="min-h-screen flex flex-col"> | ||
<header className="sticky top-0 z-50"> | ||
<html lang='en' className={`${notio.className}`}> | ||
<body className='min-h-screen flex flex-col'> | ||
<header className='sticky top-0 z-50'> | ||
<NavBar /> | ||
</header> | ||
{children} | ||
<footer className="bg-[#2C2C54] text-white py-12"> | ||
<div className="container mx-auto px-4"> | ||
<div className="grid grid-cols-1 md:grid-cols-4 gap-8"> | ||
<div> | ||
<h3 className="text-xl font-bold mb-4">About Us</h3> | ||
<p className="text-[#AAABB8]"> | ||
Premium pool maintenance services in Dubai, ensuring your pool stays pristine year-round. | ||
</p> | ||
</div> | ||
<div> | ||
<h3 className="text-xl font-bold mb-4">Contact</h3> | ||
<ul className="space-y-2 text-[#AAABB8]"> | ||
<li className="flex items-center"> | ||
<Phone className="w-4 h-4 mr-2" /> | ||
+971 50 123 4567 | ||
</li> | ||
<li className="flex items-center"> | ||
<Mail className="w-4 h-4 mr-2" /> | ||
[email protected] | ||
</li> | ||
<li className="flex items-center"> | ||
<MapPin className="w-4 h-4 mr-2" /> | ||
Dubai, UAE | ||
</li> | ||
</ul> | ||
</div> | ||
<div> | ||
<h3 className="text-xl font-bold mb-4"><Link href="/services">Services</Link></h3> | ||
<ul className="space-y-2 text-[#AAABB8]"> | ||
<li><Link href="/services/pool-maintenance">Pool Maintenance</Link></li> | ||
<li><Link href="/services/pool-design-construction">Pool Design & Construction</Link></li> | ||
<li><Link href="/services/water-testing">Water Testing</Link></li> | ||
<li><Link href="/services/chemical-balancing">Chemical Balancing</Link></li> | ||
<li><Link href="/services/equipment-repair">Equipment Repair</Link></li> | ||
<li><Link href="/services/pool-renovation">Pool Renovation</Link></li> | ||
</ul> | ||
</div> | ||
<div> | ||
<h3 className="text-xl font-bold mb-4">Follow Us</h3> | ||
<div className="flex space-x-4"> | ||
<a href="#" className="text-[#AAABB8] hover:text-white transition-colors"> | ||
<Facebook className="w-6 h-6" /> | ||
</a> | ||
<a href="#" className="text-[#AAABB8] hover:text-white transition-colors"> | ||
<Instagram className="w-6 h-6" /> | ||
</a> | ||
<a href="#" className="text-[#AAABB8] hover:text-white transition-colors"> | ||
<Twitter className="w-6 h-6" /> | ||
</a> | ||
</div> | ||
</div> | ||
<footer className='bg-[#2C2C54] text-white py-12'> | ||
<div className='container mx-auto px-4'> | ||
<div className='grid grid-cols-1 md:grid-cols-4 gap-8'> | ||
<div> | ||
<h3 className='text-xl font-bold mb-4'>About Us</h3> | ||
<p className='text-[#AAABB8]'> | ||
Premium pool maintenance services in Dubai, ensuring your pool | ||
stays pristine year-round. | ||
</p> | ||
</div> | ||
<div> | ||
<h3 className='text-xl font-bold mb-4'>Contact</h3> | ||
<ul className='space-y-2 text-[#AAABB8]'> | ||
<li className='flex items-center'> | ||
<Phone className='w-4 h-4 mr-2' /> | ||
+971 50 123 4567 | ||
</li> | ||
<li className='flex items-center'> | ||
<Mail className='w-4 h-4 mr-2' /> | ||
[email protected] | ||
</li> | ||
<li className='flex items-center'> | ||
<MapPin className='w-4 h-4 mr-2' /> | ||
Dubai, UAE | ||
</li> | ||
</ul> | ||
</div> | ||
<div className="border-t border-[#474787] mt-8 pt-8 text-center text-[#AAABB8]"> | ||
<p>© {new Date().getFullYear()} Dubai Pool Services. All rights reserved.</p> | ||
<div> | ||
<h3 className='text-xl font-bold mb-4'> | ||
<Link href='/services'>Services</Link> | ||
</h3> | ||
<ul className='space-y-2 text-[#AAABB8]'> | ||
<li> | ||
<Link href='/services/pool-maintenance'> | ||
Pool Maintenance | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href='/services/pool-design-construction'> | ||
Pool Design & Construction | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href='/services/water-testing'>Water Testing</Link> | ||
</li> | ||
<li> | ||
<Link href='/services/chemical-balancing'> | ||
Chemical Balancing | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href='/services/equipment-repair'> | ||
Equipment Repair | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href='/services/pool-renovation'> | ||
Pool Renovation | ||
</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
<div> | ||
<h3 className='text-xl font-bold mb-4'>Follow Us</h3> | ||
<div className='flex space-x-4'> | ||
<a | ||
href='#' | ||
className='text-[#AAABB8] hover:text-white transition-colors'> | ||
<Facebook className='w-6 h-6' /> | ||
</a> | ||
<a | ||
href='#' | ||
className='text-[#AAABB8] hover:text-white transition-colors'> | ||
<Instagram className='w-6 h-6' /> | ||
</a> | ||
<a | ||
href='#' | ||
className='text-[#AAABB8] hover:text-white transition-colors'> | ||
<Twitter className='w-6 h-6' /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div className='border-t border-[#474787] mt-8 pt-8 text-center text-[#AAABB8]'> | ||
<p> | ||
© {new Date().getFullYear()} Dubai Pool Services. All | ||
rights reserved. | ||
</p> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
User-agent: * | ||
Allow: / | ||
Allow: / | ||
Sitemap: https://poolsdubai.com/sitemap.xml |