From 3f6c4025b03b51d2fee81012e26ecd5e7873a628 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 22 Aug 2025 19:33:22 +0200 Subject: [PATCH] OK --- src/app/layout.jsx | 13 ++++++++++--- src/app/page.jsx | 1 - src/components/Boat.jsx | 10 +++++----- src/components/CNNVIDEO.jsx | 14 ++++++++------ src/components/CallToAction2.jsx | 2 +- src/components/CallToAction3.jsx | 2 +- src/components/CallToAction4.jsx | 8 ++++---- src/components/Carousel.jsx | 2 +- src/components/Container.jsx | 2 +- src/components/Footer.jsx | 8 ++++---- src/components/Logo.jsx | 2 +- src/components/NavLink.jsx | 2 +- src/components/NewFeatures.jsx | 2 +- src/components/NewFeatures2.jsx | 2 +- src/components/Route.jsx | 29 ++++++++++++++--------------- src/components/Testimonials.jsx | 21 +++++++++++---------- src/components/text.jsx | 20 +++++++++++++++++--- src/styles/tailwind.css | 7 +++++++ tailwind.config.js | 1 + 19 files changed, 89 insertions(+), 59 deletions(-) diff --git a/src/app/layout.jsx b/src/app/layout.jsx index 313a1cb..1852e4a 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -1,4 +1,4 @@ -import { Inter, Lexend } from 'next/font/google' +import { Inter, Lexend, Vollkorn } from 'next/font/google' import clsx from 'clsx' import '@/styles/tailwind.css' @@ -24,17 +24,24 @@ const lexend = Lexend({ variable: '--font-lexend', }) +const vollkorn = Vollkorn({ + subsets: ['latin'], + display: 'swap', + variable: '--font-vollkorn', +}) + export default function RootLayout({ children }) { return ( - {children} + {children} ) } diff --git a/src/app/page.jsx b/src/app/page.jsx index c0b8265..9e84067 100644 --- a/src/app/page.jsx +++ b/src/app/page.jsx @@ -35,7 +35,6 @@ export default function Home() { -