Merge version_1 into main #2

Merged
development merged 5 commits from version_1 into main 2026-01-20 14:14:37 +00:00
5 changed files with 38 additions and 48 deletions

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@@ -1,21 +1,17 @@
import React from 'react'; import React from 'react';
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple'; import { ThemeProvider } from './components/ui/theme-provider';
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';
function App() { function App() {
return ( return (
<div className="App"> <ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
<NavbarStyleApple /> <div className="App">
<HeroBillboard /> <header className="App-header">
<FeatureCardOne /> <p>
<Testimonial1 /> Edit <code>src/App.tsx</code> and save to reload.
<CtaOne /> </p>
<FooterOne /> </header>
</div> </div>
</ThemeProvider>
); );
} }

View File

@@ -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 Theme = 'dark' | 'light' | 'system';
type ThemeProviderProps = { type ThemeProviderProps = {
children: ReactNode; children: React.ReactNode;
defaultTheme?: Theme; defaultTheme?: Theme;
storageKey?: string; storageKey?: string;
}; };

9
tailwind.config.js Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
}

View File

@@ -1,42 +1,21 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "es5", "lib": [
"lib": [ "dom", "dom.iterable", "es6"
"dom",
"dom.iterable",
"esnext"
], ],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": false,
"noImplicitAny": false,
"noEmit": true,
"esModuleInterop": true, "esModuleInterop": true,
"module": "esnext", "allowSyntheticDefaultImports": true,
"moduleResolution": "bundler", "strict": true,
"resolveJsonModule": true, "forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext", "moduleResolution": "node", "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "react-jsx", "noEmit": true,
"incremental": true, "jsx": "react-jsx"
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
}
}, },
"include": [ "include": [
"next-env.d.ts", "src"
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
] ]
} }