Add src/App.tsx

This commit is contained in:
2026-01-20 14:13:06 +00:00
parent efe1889218
commit 53f0229b46

22
src/App.tsx Normal file
View File

@@ -0,0 +1,22 @@
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';
function App() {
return (
<div className="App">
<NavbarStyleApple />
<HeroBillboard />
<FeatureCardOne />
<Testimonial1 />
<CtaOne />
<FooterOne />
</div>
);
}
export default App;