mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
First commit
This commit is contained in:
+43
-3
@@ -1,7 +1,47 @@
|
||||
import '../styles/globals.css'
|
||||
// 🖤 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 <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
|
||||
export default MyApp;
|
||||
|
||||
Reference in New Issue
Block a user