Add src/App.tsx

This commit is contained in:
2026-01-20 15:22:37 +00:00
parent 8ec88310df
commit 0696110a4f

16
src/App.tsx Normal file
View File

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