From ac113863bf3f9951d76c91309defc9d5dcca0c22 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:14:28 +0000 Subject: [PATCH 1/5] Add postcss.config.js --- postcss.config.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 postcss.config.js diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..96bb01e --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} \ No newline at end of file -- 2.49.1 From 85c2888b238ff924eac3eb28b4abfc1ffacde358 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:14:29 +0000 Subject: [PATCH 2/5] Update src/App.tsx --- src/App.tsx | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index a6a31b4..3fb6e54 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,21 +1,17 @@ import React from 'react'; -import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple'; -import HeroBillboard from './components/sections/hero/HeroBillboard'; -import FeatureCardOne from './components/sections/feature/FeatureCardOne'; -import { Testimonial1 } from './components/sections/testimonial/Testimonial1'; -import CtaOne from './components/sections/cta/CtaOne'; -import FooterOne from './components/footer/FooterOne'; +import { ThemeProvider } from './components/ui/theme-provider'; function App() { return ( -
- - - - - - -
+ +
+
+

+ Edit src/App.tsx and save to reload. +

+
+
+
); } -- 2.49.1 From c2449efe8e7591e3bfebf80891ae82e1ff8fc8e3 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:14:30 +0000 Subject: [PATCH 3/5] Update src/components/ui/theme-provider.tsx --- src/components/ui/theme-provider.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ui/theme-provider.tsx b/src/components/ui/theme-provider.tsx index 8bac2ff..72b5c5c 100644 --- a/src/components/ui/theme-provider.tsx +++ b/src/components/ui/theme-provider.tsx @@ -1,9 +1,9 @@ -import React, { createContext, useContext, useEffect, useState, ReactNode } from 'react'; +import React, { createContext, useContext, useEffect, useState } from 'react'; type Theme = 'dark' | 'light' | 'system'; type ThemeProviderProps = { - children: ReactNode; + children: React.ReactNode; defaultTheme?: Theme; storageKey?: string; }; -- 2.49.1 From aa06359c7aee4af71a57481ee39e0b528e01b25a Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:14:31 +0000 Subject: [PATCH 4/5] Add tailwind.config.js --- tailwind.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tailwind.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..92a7d97 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + "./src/**/*.{js,jsx,ts,tsx}"], + theme: { + extend: {}, + }, + plugins: [], +} \ No newline at end of file -- 2.49.1 From 7adf2fafdec6ba140c36396282b1909c9917a5c7 Mon Sep 17 00:00:00 2001 From: development Date: Tue, 20 Jan 2026 14:14:32 +0000 Subject: [PATCH 5/5] Update tsconfig.json --- tsconfig.json | 43 +++++++++++-------------------------------- 1 file changed, 11 insertions(+), 32 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 07bb88e..2bb5bcd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,42 +1,21 @@ { "compilerOptions": { - "target": "ES2017", - "lib": [ - "dom", - "dom.iterable", - "esnext" + "target": "es5", "lib": [ + "dom", "dom.iterable", "es6" ], "allowJs": true, "skipLibCheck": true, - "strict": false, - "noImplicitAny": false, - "noEmit": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "react-jsx", - "incremental": true, - "plugins": [ - { - "name": "next" - } - ], - "paths": { - "@/*": [ - "./src/*" - ] - } + "noEmit": true, + "jsx": "react-jsx" }, "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - ".next/dev/types/**/*.ts" - ], - "exclude": [ - "node_modules" + "src" ] -} +} \ No newline at end of file -- 2.49.1