mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-13 08:46:56 +08:00
59 lines
2.0 KiB
JavaScript
59 lines
2.0 KiB
JavaScript
// 🖤 Next Head ->
|
|
import Head from "next/head";
|
|
|
|
// 🌿 Chakra UI ->
|
|
import { ChakraProvider, Container } from "@chakra-ui/react";
|
|
|
|
// 📦 Components ->
|
|
import Layout from "components/layout";
|
|
import Header from "components/header";
|
|
import Footer from "components/footer";
|
|
|
|
// 💙 Global CSS ->
|
|
import "styles/globals.css";
|
|
|
|
// 🎨 Theme ->
|
|
import theme from "styles/theme";
|
|
|
|
// 🐢 Animations ->
|
|
import Transitions from "animations/transitions";
|
|
|
|
function MyApp({ Component, pageProps, router }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>SVGL - Beautiful SVG vector logos</title>
|
|
<meta property="og:title" content="SVGL - Beautiful SVG vector logos" />
|
|
<meta property="og:description" content="Beautiful SVG logos. Free and open source."/>
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://svgl.vercel.app/" />
|
|
<meta property="og:image" content="https://svgl.vercel.app/images/banner.png" />
|
|
|
|
<meta name="twitter:site" content="@pheralb_" />
|
|
<meta property="twitter:title" content="SVGL - Beautiful SVG vector logos" />
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:creator" content="@pheralb" />
|
|
<meta property="twitter:description" content="Beautiful SVG logos. Free and open source." />
|
|
<meta name="twitter:image" content="https://svgl.vercel.app/images/banner.png" />
|
|
|
|
<meta name="keywords" content="svg,vector,logo,logos,download" />
|
|
<meta content="#16161a" name="theme-color" />
|
|
<link rel="icon" href="/icons/icon.ico" />
|
|
</Head>
|
|
<ChakraProvider theme={theme}>
|
|
<Header />
|
|
<Layout>
|
|
<Transitions key={router.route}>
|
|
<Component {...pageProps} />
|
|
</Transitions>
|
|
</Layout>
|
|
<Footer />
|
|
</ChakraProvider>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|