Update src/App.tsx
This commit is contained in:
24
src/App.tsx
24
src/App.tsx
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user