18 Commits

Author SHA1 Message Date
8a5d89cb84 Merge version_3 into main
Merge version_3 into main
2026-03-03 10:14:52 +00:00
30aba1c90b Merge version_3 into main
Merge version_3 into main
2026-03-03 10:12:24 +00:00
8883761e71 Merge version_1 into main
Merge version_1 into main
2026-03-03 10:07:26 +00:00
6c074a2450 Update src/app/page.tsx 2026-03-03 10:07:21 +00:00
a1d5c90c70 Update src/app/page.tsx 2026-03-03 10:06:37 +00:00
a90c3367ee Update src/app/layout.tsx 2026-03-03 10:06:36 +00:00
08f6b1b7a3 Merge version_3 into main
Merge version_3 into main
2026-03-03 10:03:29 +00:00
57858e1166 Update src/app/styles/variables.css 2026-03-03 10:03:20 +00:00
3aac05814b Update src/app/styles/base.css 2026-03-03 10:03:19 +00:00
0debd6fff2 Update src/app/page.tsx 2026-03-03 10:03:19 +00:00
a3f8582144 Update src/app/layout.tsx 2026-03-03 10:03:18 +00:00
04621199de Merge version_1 into main
Merge version_1 into main
2026-03-03 09:59:56 +00:00
0d60c20fc0 Update src/app/page.tsx 2026-03-03 09:59:46 +00:00
f09332655b Switch to version 1: modified src/app/styles/variables.css 2026-03-03 09:58:25 +00:00
e71104036e Switch to version 1: modified src/app/styles/base.css 2026-03-03 09:58:24 +00:00
da939fb810 Switch to version 1: modified src/app/page.tsx 2026-03-03 09:58:23 +00:00
77bb001bf6 Switch to version 1: modified src/app/layout.tsx 2026-03-03 09:58:23 +00:00
def5941f5a Merge version_3 into main
Merge version_3 into main
2026-03-03 09:54:18 +00:00
2 changed files with 30 additions and 22 deletions

View File

@@ -1,16 +1,27 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Montserrat } from "next/font/google";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -43,7 +54,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${montserrat.variable} antialiased`}
className={`${manrope.variable} ${dmSans.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -15,16 +15,16 @@ import { Award, Sparkles, Flag, Zap, Trophy, Phone, Star, Crown, Briefcase } fro
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
background="none"
cardStyle="glass-elevated"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
@@ -44,7 +44,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Tashkent's Premier Lakeside Golf Experience"
description="18-Hole Championship Course | Corporate Events | Exclusive Membership"
description="18-Hole Championship Course | Corporate Events | Exclusive Membership | 4.4★ | 141 Reviews"
tag="Welcome to Excellence"
tagIcon={Sparkles}
tagAnimation="blur-reveal"
@@ -69,7 +69,7 @@ export default function LandingPage() {
<TextAbout
tag="Trusted by Tashkent"
tagIcon={Award}
title="4.4 ★ Rating | 141 Reviews | Serving Tashkent's Golf Community with Pride"
title="Serving Tashkent's Golf Community with Pride Since Day One"
useInvertedBackground={false}
buttons={[
{ text: "Learn Our Story", href: "#golf-experience" },
@@ -115,22 +115,19 @@ export default function LandingPage() {
plans={[
{
id: "standard", tag: "Standard Membership", tagIcon: Sparkles,
price: "Contact", period: "/inquiry", description: "Perfect for golf enthusiasts looking for regular access and special rates.", button: { text: "Request Information", href: "#contact" },
featuresTitle: "What's Included:", features: [
price: "Contact", period: "/inquiry", description: "Perfect for golf enthusiasts looking for regular access and special rates.", button: { text: "Request Information", href: "#contact" }, featuresTitle: "What's Included:", features: [
"Unlimited tee time bookings", "20% discount on green fees", "Access to member events", "Priority course reservations", "Member-only dining privileges"
]
},
{
id: "premium", tag: "Premium Membership", tagIcon: Crown,
price: "Contact", period: "/inquiry", description: "Exclusive benefits for dedicated golfers seeking premium privileges.", button: { text: "Request Information", href: "#contact" },
featuresTitle: "What's Included:", features: [
price: "Contact", period: "/inquiry", description: "Exclusive benefits for dedicated golfers seeking premium privileges.", button: { text: "Request Information", href: "#contact" }, featuresTitle: "What's Included:", features: [
"Unlimited priority tee times", "Complimentary green fees", "Private locker room access", "Exclusive member tournaments", "VIP event invitations", "Guest privileges for 4 per month"
]
},
{
id: "corporate", tag: "Corporate Membership", tagIcon: Briefcase,
price: "Contact", period: "/inquiry", description: "Perfect for companies hosting client events and team outings.", button: { text: "Request Information", href: "#contact" },
featuresTitle: "What's Included:", features: [
price: "Contact", period: "/inquiry", description: "Perfect for companies hosting client events and team outings.", button: { text: "Request Information", href: "#contact" }, featuresTitle: "What's Included:", features: [
"Multiple executive memberships", "Reserved tournament dates", "Private event spaces", "Customized corporate packages", "Employee access privileges", "Dedicated events coordinator"
]
}
@@ -219,7 +216,7 @@ export default function LandingPage() {
columns={[
{
title: "Club", items: [
{ label: "Home", href: "/" },
{ label: "Home", href: "#" },
{ label: "Golf Course", href: "#golf-experience" },
{ label: "About Us", href: "#trust" },
{ label: "Contact", href: "#contact" }