import React from "react";
import { Global } from "@emotion/react";

import { LandingPage } from "./pages/landing";
import { globalStyles } from "./global-styles";

const App = () => {
  return (
    <>
      <Global styles={globalStyles} />
      <LandingPage />
    </>
  );
};

export default App;