This commit is contained in:
2024-05-03 12:12:20 +05:00
4 changed files with 44 additions and 46 deletions
-1
View File
@@ -1,6 +1,5 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
trailingSlash: true,
distDir: "dist",
};
+41 -42
View File
File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 15 KiB

+1 -1
View File
@@ -39,7 +39,7 @@ export default function App() {
<ExcursionVR />
<EffeciencyCalculator />
<Winners />
{/* <Reviews /> */}
<Reviews />
<Projects />
<Clients />
<ContactUs />
+2 -2
View File
@@ -1,8 +1,9 @@
import { IClient } from "../types/Clients";
export const clients: IClient[] = [
{ id: "1", src: "/images/clients/1.png" },
{ id: "30", src: "/images/clients/31.png" },
{ id: "2", src: "/images/clients/2.png" },
{ id: "1", src: "/images/clients/1.png" },
{ id: "3", src: "/images/clients/3.png" },
{ id: "4", src: "/images/clients/4.png" },
{ id: "5", src: "/images/clients/5.png" },
@@ -31,5 +32,4 @@ export const clients: IClient[] = [
{ id: "27", src: "/images/clients/28.png" },
{ id: "28", src: "/images/clients/29.png" },
{ id: "29", src: "/images/clients/30.png" },
{ id: "30", src: "/images/clients/31.png" },
];