Update src/App.tsx
This commit is contained in:
13
src/App.tsx
13
src/App.tsx
@@ -1,15 +1,18 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { ThemeProvider } from './components/ui/ThemeProvider';
|
||||||
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroBillboard from './components/sections/hero/HeroBillboard';
|
import HeroBillboard from './components/sections/hero/HeroBillboard';
|
||||||
import FeatureCardOne from './components/sections/feature/FeatureCardOne';
|
import FeatureCardOne from './components/sections/feature/FeatureCardOne';
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<div className="App">
|
<ThemeProvider defaultTheme="dark" storageKey="vite-ui-theme">
|
||||||
<NavbarStyleApple />
|
<div className="App">
|
||||||
<HeroBillboard />
|
<NavbarStyleApple />
|
||||||
<FeatureCardOne />
|
<HeroBillboard />
|
||||||
</div>
|
<FeatureCardOne />
|
||||||
|
</div>
|
||||||
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user