mirror of
https://github.com/Spythere/spythere-portfolio.git
synced 2026-05-03 05:28:16 +00:00
26 lines
637 B
TypeScript
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;
|
|
|