fixes
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbopack",
|
"dev": "next dev --turbopack",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "PORT=4000 next start",
|
||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { useEffect } from "react";
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface Window {
|
interface Window {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
particlesJS: any;
|
particlesJS: any;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,11 +25,6 @@ const preferenceOptions: PreferenceOption[] = [
|
|||||||
label: "E-commerce Solutions",
|
label: "E-commerce Solutions",
|
||||||
description: "Online stores, payment gateways, inventory management",
|
description: "Online stores, payment gateways, inventory management",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: "seo",
|
|
||||||
label: "SEO & Digital Marketing",
|
|
||||||
description: "Search optimization, content strategy, analytics",
|
|
||||||
},
|
|
||||||
// {
|
// {
|
||||||
// id: "mobile",
|
// id: "mobile",
|
||||||
// label: "Mobile Development",
|
// label: "Mobile Development",
|
||||||
|
|||||||
@@ -28,11 +28,11 @@ export default function RootLayout({
|
|||||||
<head>
|
<head>
|
||||||
{/* ThreeJS CDN */}
|
{/* ThreeJS CDN */}
|
||||||
<script
|
<script
|
||||||
src="http://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"
|
src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"
|
||||||
async
|
async
|
||||||
></script>
|
></script>
|
||||||
<script
|
<script
|
||||||
src="http://threejs.org/examples/js/libs/stats.min.js"
|
src="https://threejs.org/examples/js/libs/stats.min.js"
|
||||||
async
|
async
|
||||||
></script>
|
></script>
|
||||||
{/* Orbitron Font */}
|
{/* Orbitron Font */}
|
||||||
|
|||||||
Reference in New Issue
Block a user