Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1a21db8d4b | |||
| 2db2b05ad0 | |||
| b46e857237 | |||
| 7e80c1af5b | |||
| f44cc33953 | |||
| 0a6bd5aef4 | |||
| d4aeef5c79 |
@@ -7,12 +7,13 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Nunito_Sans } from "next/font/google";
|
import { Nunito_Sans } from "next/font/google";
|
||||||
|
import { Open_Sans } from "next/font/google";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'NaBees Fashions | Premium Women\'s Clothing & Tailoring in Sharjah',
|
title: 'Nabees Fashion | Premium Women\'s Clothing & Tailoring in Sharjah',
|
||||||
description: 'Discover NaBees Fashions in Sharjah for curated women\'s clothing and expert tailoring services. Elevate your style with perfectly fitted garments.',
|
description: 'Discover Nabees Fashion in Sharjah for curated women\'s clothing and expert tailoring services. Elevate your style with perfectly fitted garments.',
|
||||||
keywords: ["NaBees Fashions, women's clothing, Sharjah, UAE, tailoring, alterations, modest wear, custom clothing, boutique, fashion, dresses, bespoke, local boutique"],
|
keywords: ["NaBees Fashions, women's clothing, Sharjah, UAE, tailoring, alterations, modest wear, custom clothing, boutique, fashion, dresses, bespoke, local boutique"],
|
||||||
openGraph: {
|
openGraph: {
|
||||||
"title": "NaBees Fashions | Premium Women's Clothing & Tailoring in Sharjah",
|
"title": "NaBees Fashions | Premium Women's Clothing & Tailoring in Sharjah",
|
||||||
@@ -41,9 +42,14 @@ export const metadata: Metadata = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans",
|
const inter = Inter({
|
||||||
subsets: ["latin"]
|
variable: "--font-inter",
|
||||||
|
subsets: ["latin"],
|
||||||
|
});
|
||||||
|
const openSans = Open_Sans({
|
||||||
|
variable: "--font-open-sans",
|
||||||
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -54,7 +60,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${nunitoSans.variable} antialiased`}>
|
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
name: "Contact", id: "#contact"},
|
name: "Contact", id: "#contact"},
|
||||||
]}
|
]}
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eqfn5u"
|
logoSrc="https://nabeesfashion.com/wp-content/uploads/2023/12/logo-png.png"
|
||||||
logoAlt="Nabees Fashion Logo"
|
logoAlt="Nabees Fashion Logo"
|
||||||
brandName="Nabees Fashion"
|
brandName="Nabees Fashion"
|
||||||
/>
|
/>
|
||||||
@@ -194,7 +194,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=eqfn5u"
|
logoSrc="https://nabeesfashion.com/wp-content/uploads/2023/12/logo-png.png"
|
||||||
logoAlt="Nabees Fashion Logo"
|
logoAlt="Nabees Fashion Logo"
|
||||||
logoText="Nabees Fashion"
|
logoText="Nabees Fashion"
|
||||||
copyrightText="© 2024 Nabees Fashion. All rights reserved."
|
copyrightText="© 2024 Nabees Fashion. All rights reserved."
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-nunito-sans), sans-serif;
|
font-family: var(--font-open-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-nunito-sans), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user