diff --git a/src/app/page.tsx b/src/app/page.tsx
index 542e208..3943e7a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -31,16 +31,12 @@ export default function LandingPage() {
@@ -54,9 +50,9 @@ export default function LandingPage() {
description="Ваша ежедневная порция исключительного кофе и восхитительных моментов."
buttons={[
{
- text: "Посмотреть меню", href: "#menu"},
+ text: "Посмотреть меню", href: "/#menu"},
{
- text: "Найти нас", href: "#contact"},
+ text: "Найти нас", href: "/#contact"},
]}
imageSrc="http://img.b2bpic.net/free-photo/front-view-cup-coffee-with-muffins_23-2148251619.jpg"
imageAlt="Cozy coffee shop interior with bar and seating"
@@ -189,12 +185,7 @@ export default function LandingPage() {
variant: "plain"}}
tag="Посетите нас"
title="Свяжитесь с нами"
- description="Мы будем рады услышать от вас. Загляните на чашечку или отправьте нам сообщение.
-
-Часы работы: Пн-Пт: 7:00 - 19:00, Сб-Вс: 8:00 - 18:00
-Адрес: ул. Главная, 10, Город, Страна
-Телефон: +123 456 7890
-Электронная почта: info@thedailygrind.com"
+ description="Мы будем рады услышать от вас. Загляните на чашечку или отправьте нам сообщение. \n\nЧасы работы: Пн-Пт: 7:00 - 19:00, Сб-Вс: 8:00 - 18:00\nАдрес: ул. Главная, 10, Город, Страна\nТелефон: +123 456 7890\nЭлектронная почта: info@thedailygrind.com"
imageSrc="http://img.b2bpic.net/free-photo/african-woman-checkered-cape-eyeglasses-posed-outdoor_627829-5811.jpg"
imageAlt="Exterior view of a charming coffee shop"
mediaAnimation="slide-up"
@@ -211,31 +202,31 @@ export default function LandingPage() {
{
title: "Меню", items: [
{
- label: "Кофе", href: "#menu"},
+ label: "Кофе", href: "/#menu"},
{
- label: "Выпечка", href: "#menu"},
+ label: "Выпечка", href: "/#menu"},
{
- label: "Холодные напитки", href: "#menu"},
+ label: "Холодные напитки", href: "/#menu"},
{
- label: "Специальные предложения", href: "#features"},
+ label: "Специальные предложения", href: "/#features"},
],
},
{
title: "О нас", items: [
{
- label: "Наша история", href: "#about"},
+ label: "Наша история", href: "/#about"},
{
- label: "Отзывы", href: "#testimonials"},
+ label: "Отзывы", href: "/#testimonials"},
{
- label: "Партнеры", href: "#social-proof"},
+ label: "Партнеры", href: "/#social-proof"},
],
},
{
title: "Поддержка", items: [
{
- label: "FAQ", href: "#faq"},
+ label: "FAQ", href: "/#faq"},
{
- label: "Контакты", href: "#contact"},
+ label: "Контакты", href: "/#contact"},
{
label: "Конфиденциальность", href: "#"},
],
@@ -248,4 +239,4 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
new file mode 100644
index 0000000..da4894f
--- /dev/null
+++ b/src/app/products/page.tsx
@@ -0,0 +1,93 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import ProductCardFour from '@/components/sections/product/ProductCardFour';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+
+export default function ProductsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}