8 Commits

Author SHA1 Message Date
c70ea166c3 Merge version_2 into main
Merge version_2 into main
2026-03-06 11:29:47 +00:00
f29ef07376 Update src/app/styles/variables.css 2026-03-06 11:29:43 +00:00
f5f2a8c1fe Update src/app/styles/base.css 2026-03-06 11:29:43 +00:00
f47a9a3923 Update src/app/page.tsx 2026-03-06 11:29:42 +00:00
471307872b Update src/app/layout.tsx 2026-03-06 11:29:42 +00:00
02127cd1ab Merge version_1 into main
Merge version_1 into main
2026-03-06 11:23:25 +00:00
cba683a86f Merge version_1 into main
Merge version_1 into main
2026-03-06 11:22:40 +00:00
856c5ef7ce Merge version_1 into main
Merge version_1 into main
2026-03-06 11:21:19 +00:00
4 changed files with 22 additions and 52 deletions

View File

@@ -1,54 +1,25 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Comfortable and affordable 3-star hotel in Guwahati. 4.3★ rated, free Wi-Fi, AC rooms, parking. Perfect for students, families, and business travelers in Christian Basti.", keywords: "hotel guwahati, 3-star hotel, accommodation guwahati, christian basti hotel, aditya residency, budget hotel guwahati", openGraph: {
title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Experience comfort and convenience at ADITYA RESIDENCY. 4.3★ rated, affordable accommodation with free Wi-Fi and parking. Book now!", type: "website", siteName: "ADITYA RESIDENCY", images: [
{
url: "http://img.b2bpic.net/free-photo/young-woman-wearing-embroidered-shirt_23-2149394271.jpg", alt: "Aditya Residency Hotel Building"},
],
},
twitter: {
card: "summary_large_image", title: "ADITYA RESIDENCY - 3-Star Hotel in Guwahati", description: "Comfortable accommodation with free Wi-Fi, AC rooms, and friendly service. 4.3★ rated. Book your stay today!", images: ["http://img.b2bpic.net/free-photo/young-woman-wearing-embroidered-shirt_23-2149394271.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "ADITYA RESIDENCY | 3-Star Comfort in Guwahati", description: "3-star hotel in Christian Basti, Guwahati with comfortable rooms, free Wi-Fi, 24/7 reception, and excellent guest reviews."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${poppins.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaA
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Star, Building2, MapPin, Calendar } from "lucide-react";
import { Star, Building2, MapPin, Calendar, Phone, Mail } from "lucide-react";
export default function LandingPage() {
return (
@@ -271,4 +271,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-raleway), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #6139e6;
--background: #FFFFFF;
--card: #FFFFFF;
--foreground: #333333;
--primary-cta: #4F46E5;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta: #FFFFFF;
--secondary-cta-text: #1c1c1c;
--accent: #6139e6;
--background-accent: #b3a8e8;
--accent: #4F46E5;
--background-accent: #E8E5FF;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);