23 lines
No EOL
493 B
TypeScript
23 lines
No EOL
493 B
TypeScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
import Header from './components/Header';
|
|
import Footer from './components/Footer';
|
|
import ComingSoon from './components/ComingSoon';
|
|
|
|
const AppContainer = styled.div`
|
|
min-height: 100vh;
|
|
position: relative;
|
|
padding-bottom: 60px; // Height of the footer
|
|
`;
|
|
|
|
const App: React.FC = () => {
|
|
return (
|
|
<AppContainer>
|
|
<Header />
|
|
<ComingSoon />
|
|
<Footer />
|
|
</AppContainer>
|
|
);
|
|
};
|
|
|
|
export default App; |