replace style.css by components

This commit is contained in:
2024-05-02 22:57:42 +03:00
parent 79bed2dae6
commit 3652b99f4c
13 changed files with 174 additions and 294 deletions
+8 -6
View File
@@ -1,14 +1,16 @@
import React from 'react';
import React from "react";
import { Global } from "@emotion/react";
import { LandingPage } from './pages/landing'
import './style/main.css'
import { LandingPage } from "./pages/landing";
import { globalStyles } from "./global-styles";
const App = () => {
return (
<LandingPage />
<>
<Global styles={globalStyles} />
<LandingPage />
</>
);
};
export default App;