Add src/App.js
This commit is contained in:
27
src/App.js
Normal file
27
src/App.js
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import './App.css';
|
||||||
|
import NavbarStyleApple from './components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import HeroBillboard from './components/sections/hero/HeroBillboard';
|
||||||
|
import AboutMetric from './components/sections/about/AboutMetric';
|
||||||
|
import AboutFeatureGrid from './components/sections/about/AboutFeatureGrid';
|
||||||
|
import AboutCardFeature from './components/sections/about/AboutCardFeature';
|
||||||
|
import TestimonialsStorybook from './components/sections/testimonials/TestimonialsStorybook';
|
||||||
|
import BlogGrid from './components/sections/blog/BlogGrid';
|
||||||
|
import FooterLinksColumns from './components/footer/FooterLinksColumns/FooterLinksColumns';
|
||||||
|
|
||||||
|
function App() {
|
||||||
|
return (
|
||||||
|
<div className="App">
|
||||||
|
<NavbarStyleApple />
|
||||||
|
<HeroBillboard />
|
||||||
|
<AboutMetric />
|
||||||
|
<AboutFeatureGrid />
|
||||||
|
<AboutCardFeature />
|
||||||
|
<TestimonialsStorybook />
|
||||||
|
<BlogGrid />
|
||||||
|
<FooterLinksColumns />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default App;
|
||||||
Reference in New Issue
Block a user