|
1 | | -import '../styles/globals.css' |
2 | | -import type { AppProps } from 'next/app' |
3 | | - |
| 1 | +import "../styles/globals.css"; |
| 2 | +import "../styles/prism-lucario.css"; |
| 3 | +import type { AppProps } from "next/app"; |
| 4 | +import NavBar from "../components/navbar/navbar"; |
| 5 | +import Head from "next/head"; |
4 | 6 | function MyApp({ Component, pageProps }: AppProps) { |
5 | | - return <Component {...pageProps} /> |
| 7 | + return ( |
| 8 | + <> |
| 9 | + <Head> |
| 10 | + <title>Kai's Wacky Website</title> |
| 11 | + <meta |
| 12 | + name="description" |
| 13 | + content="Part-Time High School Student, Part-Time Computer Wizard" |
| 14 | + /> |
| 15 | + <link rel="icon" type="image/jpg" href="/Kai.jpg" /> |
| 16 | + <meta httpEquiv="X-Clacks-Overhead" content="GNU Terry Pratchett" /> |
| 17 | + <title>Kai Devrim</title> |
| 18 | + <meta |
| 19 | + name="keywords" |
| 20 | + content="kai, kai devrim, kai mccormick, devrim, devrimkai, devrim kai, kai devrim mccormick, kai the penguin, penguin kai, penguinkai" |
| 21 | + /> |
| 22 | + <meta name="robots" content="index, follow" /> |
| 23 | + <meta httpEquiv="Content-Type" content="text/html; charset=utf-8" /> |
| 24 | + <meta name="language" content="English" /> |
| 25 | + <meta name="author" content="Kai Devrim" /> |
| 26 | + <meta name="title" content="Kai Devrim" /> |
| 27 | + <meta |
| 28 | + name="description" |
| 29 | + content="Part-Time High School Student, Part-Time Computer Wizard" |
| 30 | + /> |
| 31 | + |
| 32 | + <meta itemProp="name" content="Kai Devrim" /> |
| 33 | + <meta |
| 34 | + itemProp="description" |
| 35 | + content="Part-Time High School Student, Part-Time Computer Wizard" |
| 36 | + /> |
| 37 | + <meta itemProp="image" content="https://devrim.tech/meta.png" /> |
| 38 | + |
| 39 | + <meta property="og:type" content="website" /> |
| 40 | + <meta property="og:url" content="https://devrim.tech/" /> |
| 41 | + <meta property="og:title" content="Kai Devrim" /> |
| 42 | + <meta |
| 43 | + property="og:description" |
| 44 | + content="Part-Time High School Student, Part-Time Computer Wizard" |
| 45 | + /> |
| 46 | + <meta property="og:image" content="https://devrim.tech/meta.png" /> |
| 47 | + |
| 48 | + <meta name="twitter:card" content="summary_large_image" /> |
| 49 | + <meta property="twitter:url" content="https://devrim.tech/" /> |
| 50 | + <meta property="twitter:title" content="Kai Devrim" /> |
| 51 | + <meta |
| 52 | + property="twitter:description" |
| 53 | + content="Part-Time High School Student, Part-Time Computer Wizard" |
| 54 | + /> |
| 55 | + <meta name="twitter:image" content="https://devrim.tech/meta.png" /> |
| 56 | + </Head> |
| 57 | + <NavBar /> <Component {...pageProps} /> |
| 58 | + </> |
| 59 | + ); |
6 | 60 | } |
7 | 61 |
|
8 | | -export default MyApp |
| 62 | +export default MyApp; |
0 commit comments