5 Commits

Author SHA1 Message Date
2db2b05ad0 Update theme fonts 2026-06-03 16:22:22 +00:00
b46e857237 Update theme fonts 2026-06-03 16:22:22 +00:00
f44cc33953 Update src/app/page.tsx 2026-06-03 15:45:25 +00:00
0a6bd5aef4 Update src/app/layout.tsx 2026-06-03 15:45:25 +00:00
d4aeef5c79 Merge version_2 into main
Merge version_2 into main
2026-06-03 15:43:56 +00:00
3 changed files with 16 additions and 10 deletions

View File

@@ -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

View File

@@ -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."

View File

@@ -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;
}