final commit

This commit is contained in:
2024-05-03 06:04:22 +03:00
parent 4376a0fd99
commit 8e59842aa3
3 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
//output: 'export',
basePath: '/drop'
};
export default nextConfig;

View File

@@ -42,7 +42,7 @@ export default function RootLayout({
<html lang="en"
className={classNames(helveticaNeueCyrFont.variable, sFProTextFont.variable, proximaNovaFont.variable)}>
<head>
<link rel="icon" href="/favicon.png" sizes="any"/>
<link rel="icon" href="drop/favicon.png" sizes="any"/>
<title>DENCO Бизнес</title>
</head>
<body>{children}</body>

View File

@@ -10,10 +10,10 @@ export function TestimonialsSection() {
<Container className={styles.container}>
<h3 className={styles.title}>Посмотрите отзывы от наших клиентов</h3>
<Carousel>
<video controls src={"videos/1.mp4"}/>
<video controls src={"videos/2.mp4"}/>
<video controls src={"videos/3.mp4"}/>
<video controls src={"videos/4.mp4"}/>
<video controls src={"drop/videos/1.mp4"}/>
<video controls src={"drop/videos/2.mp4"}/>
<video controls src={"drop/videos/3.mp4"}/>
<video controls src={"drop/videos/4.mp4"}/>
</Carousel>
</Container>
</section>