mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
// 🖤 Next Head ->
|
|
import Head from "next/head";
|
|
|
|
// 🌿 Chakra UI ->
|
|
import { ChakraProvider } from "@chakra-ui/react";
|
|
|
|
// 📦 Components ->
|
|
import Header from "components/header";
|
|
import Footer from "components/footer";
|
|
|
|
// 💙 Global CSS ->
|
|
import "styles/globals.css";
|
|
|
|
// 🎨 Theme ->
|
|
import theme from "styles/theme";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>iconr - Beautiful SVG vector icons</title>
|
|
<meta name="description" content="SVGs for everyone, totally free" />
|
|
<meta property="og:type" content="website" />
|
|
<meta
|
|
property="og:title"
|
|
content="iconr - Beautiful SVG vector icons"
|
|
/>
|
|
<meta property="og:url" content="https://iconr.vercel.app/" />
|
|
<meta
|
|
property="og:description"
|
|
content="SVGs for everyone, totally free"
|
|
/>
|
|
<meta property="og:image" content="images/banner.png" />
|
|
<meta name="keywords" content="svg,vector,logo,logos,download" />
|
|
<meta content="#16161a" name="theme-color" />
|
|
<link rel="icon" href="images/logo.png" />
|
|
</Head>
|
|
<ChakraProvider theme={theme}>
|
|
<Header />
|
|
<Component {...pageProps} />
|
|
<Footer />
|
|
</ChakraProvider>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|