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 { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'NaBees Fashions | 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.',
|
||||
title: 'Nabees Fashion | Premium Women\'s Clothing & Tailoring in Sharjah',
|
||||
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"],
|
||||
openGraph: {
|
||||
"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",
|
||||
subsets: ["latin"]
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -54,7 +60,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body className={`${inter.variable} ${openSans.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -46,7 +46,7 @@ export default function LandingPage() {
|
||||
{
|
||||
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"
|
||||
brandName="Nabees Fashion"
|
||||
/>
|
||||
@@ -194,7 +194,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<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"
|
||||
logoText="Nabees Fashion"
|
||||
copyrightText="© 2024 Nabees Fashion. All rights reserved."
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-open-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user