7 Commits

Author SHA1 Message Date
1a21db8d4b Merge version_3 into main
Merge version_3 into main
2026-06-03 16:22:26 +00:00
2db2b05ad0 Update theme fonts 2026-06-03 16:22:22 +00:00
b46e857237 Update theme fonts 2026-06-03 16:22:22 +00:00
7e80c1af5b Merge version_3 into main
Merge version_3 into main
2026-06-03 15:45:29 +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 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

View File

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

View File

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