Files
spythere-portfolio/src/App.tsx
T
2023-09-02 15:00:48 +02:00

26 lines
637 B
TypeScript

import { ThemeProvider } from 'styled-components';
import { theme } from './theme';
import { GlobalStyles } from './components/styles/Global.styled';
import Navbar from './components/Navbar';
import LandingSection from './components/LandingSection';
import './i18n';
import AboutSection from './components/AboutSection';
import ProjectsSection from './components/ProjectsSection';
function App() {
return (
<ThemeProvider theme={theme}>
<>
<GlobalStyles />
<Navbar />
<LandingSection />
<AboutSection />
<ProjectsSection />
</>
</ThemeProvider>
);
}
export default App;