Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a5d89cb84 | |||
| 30aba1c90b | |||
| 8883761e71 | |||
| 6c074a2450 | |||
| a1d5c90c70 | |||
| a90c3367ee | |||
| 08f6b1b7a3 | |||
| 57858e1166 | |||
| 3aac05814b | |||
| 0debd6fff2 | |||
| a3f8582144 | |||
| 04621199de | |||
| 0d60c20fc0 | |||
| f09332655b | |||
| e71104036e | |||
| da939fb810 | |||
| 77bb001bf6 | |||
| def5941f5a |
@@ -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}
|
||||
|
||||
@@ -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" }
|
||||
|
||||
Reference in New Issue
Block a user