31 lines
796 B
TypeScript
31 lines
796 B
TypeScript
|
|
import React from 'react';
|
||
|
|
import Header from './components/Header';
|
||
|
|
import Hero from './components/Hero';
|
||
|
|
import About from './components/About';
|
||
|
|
import Offerings from './components/Offerings';
|
||
|
|
import WhyHumanAI from './components/WhyHumanAI';
|
||
|
|
import Process from './components/Process';
|
||
|
|
import Audience from './components/Audience';
|
||
|
|
import CTASection from './components/CTASection';
|
||
|
|
import Footer from './components/Footer';
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen bg-background selection:bg-primary selection:text-background">
|
||
|
|
<Header />
|
||
|
|
<main>
|
||
|
|
<Hero />
|
||
|
|
<About />
|
||
|
|
<Offerings />
|
||
|
|
<WhyHumanAI />
|
||
|
|
<Process />
|
||
|
|
<Audience />
|
||
|
|
<CTASection />
|
||
|
|
</main>
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|