Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 612e39bd51 | |||
| 42e4327e0a | |||
| 0d6ccf5355 | |||
| b75712ff79 | |||
| 25e0fa19c8 | |||
| 1f2ed61e60 | |||
| b7357ae3c6 | |||
| 44c8a7a6d8 | |||
| 386a9e3cf1 |
@@ -1,29 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", 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: "MONA PILATES STUDIO | Студія пілатесу на реформерах в Одесі", description: "Камерна студія пілатесу для жінок в Одесі. Реформер пілатес, індивідуальний підхід, преміум обладнання. Запишіться на тренування сьогодні.", keywords: "пілатес, реформер, студія пілатесу, фітнес Одеса, женский фитнес, турбота про тіло", openGraph: {
|
||||
title: "MONA PILATES STUDIO | Реформер Пілатес в Одесі", description: "Простір жіночої сили, балансу та турботи про себе. Записуйтеся на тренування на реформерах.", siteName: "MONA PILATES STUDIO", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/woman-with-trainer-practising-yoga_1303-14852.jpg", alt: "MONA PILATES STUDIO"},
|
||||
url: "http://img.b2bpic.net/free-photo/woman-with-trainer-practising-yoga_1303-14852.jpg", alt: "MONA PILATES STUDIO"
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
@@ -41,11 +32,9 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<html lang="uk" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
@@ -5,7 +5,6 @@ import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleC
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Instagram, Phone, Sparkles } from "lucide-react";
|
||||
@@ -15,12 +14,12 @@ export default function LandingPage() {
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="blurBottom"
|
||||
borderRadius="soft"
|
||||
contentWidth="compact"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
@@ -31,7 +30,6 @@ export default function LandingPage() {
|
||||
{ name: "Про студію", id: "about" },
|
||||
{ name: "Чому ми", id: "why-us" },
|
||||
{ name: "Відгуки", id: "testimonials" },
|
||||
{ name: "Локація", id: "location" },
|
||||
{ name: "Контакти", id: "contact" }
|
||||
]}
|
||||
/>
|
||||
@@ -46,7 +44,7 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Записатися на тренування", href: "contact" },
|
||||
{ text: "Проложити маршрут", href: "location" }
|
||||
{ text: "Проложити маршрут", href: "https://maps.google.com" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
leftCarouselItems={[
|
||||
@@ -135,33 +133,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="location" data-section="location">
|
||||
<ContactCenter
|
||||
tag="Локація"
|
||||
title="Ми знаходимося в Одесі"
|
||||
description="вулиця Академіка Філатова, 2, секція 2\nОдеса, Одеська область, 65000\n\nЗручне розташування у центральній частині міста з легким доступом та парковкою."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Ваша адреса"
|
||||
buttonText="Проложити маршрут"
|
||||
termsText="Клацніть на кнопку, щоб отримати маршрут на Google Maps."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Запишіться зараз"
|
||||
title="Запішіться на тренування"
|
||||
description="Подаруйте собі годину турботи та сили. Наші тренери чекають на вас!"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Ваше ім'я"
|
||||
buttonText="Записатися"
|
||||
termsText="Ми зв'яжемося з вами впродовж 24 годин для підтвердження бронювання."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="MONA PILATES STUDIO"
|
||||
copyrightText="© 2026 MONA PILATES STUDIO | Pilates Reformer Studio | Odessa"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-open-sans), 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-inter), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1b0c25;;
|
||||
--primary-cta: #1b0c25;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #ff93e4;;
|
||||
--background-accent: #e8a8c3;; */
|
||||
/* --background: #faf8f5;;
|
||||
--card: #fdfcfb;;
|
||||
--foreground: #3d2f2a;;
|
||||
--primary-cta: #8b7355;;
|
||||
--secondary-cta: #e8dfd5;;
|
||||
--accent: #d4c4b0;;
|
||||
--background-accent: #c9b8a3;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #1b0c25;;
|
||||
--primary-cta: #1b0c25;;
|
||||
--background: #faf8f5;;
|
||||
--card: #fdfcfb;;
|
||||
--foreground: #3d2f2a;;
|
||||
--primary-cta: #8b7355;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #e8dfd5;;
|
||||
--secondary-cta-text: #1b0c25;;
|
||||
--accent: #ff93e4;;
|
||||
--background-accent: #e8a8c3;;
|
||||
--accent: #d4c4b0;;
|
||||
--background-accent: #c9b8a3;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user