this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update metadata

BK610 b0e7ea9a c93f53ce

+23 -54
+23 -54
app/layout.tsx
··· 2 2 import { PostHogProvider } from "./providers"; 3 3 import type { Metadata } from "next"; 4 4 5 - { 6 - /* <Head> 7 - <meta name="application-name" content="Baileykane.co" /> 8 - <meta name="apple-mobile-web-app-capable" content="yes" /> 9 - <meta name="apple-mobile-web-app-status-bar-style" content="default" /> 10 - <meta name="apple-mobile-web-app-title" content="Baileykane.co" /> 11 - <meta name="description" content="Baileykane.co" /> 12 - <meta name="format-detection" content="telephone=no" /> 13 - <meta name="mobile-web-app-capable" content="yes" /> 14 - <meta name="msapplication-config" content="/icons/browserconfig.xml" /> 15 - <meta name="msapplication-TileColor" content="#2B5797" /> 16 - <meta name="msapplication-tap-highlight" content="no" /> 17 - <meta name="theme-color" content="#ddd7fe" /> 18 - <meta charSet="UTF-8" /> 19 - <link 20 - rel="icon" 21 - href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🅱️</text></svg>" 22 - ></link> 23 - 24 - <link 25 - rel="shortcut icon" 26 - href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🅱️</text></svg>" 27 - /> 28 - <link rel="manifest" href="/manifest.json" /> 29 - 30 - <meta name="twitter:card" content="summary" /> 31 - <meta name="twitter:url" content="https://baileykane.co" /> 32 - <meta name="twitter:title" content="Bailey Kane" /> 33 - <meta 34 - name="twitter:description" 35 - content="Bailey Kane | Helping small businesses get more done with technology" 36 - /> 37 - <meta 38 - name="twitter:image" 39 - content="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🅱️</text></svg>" 40 - /> 41 - <meta name="twitter:creator" content="@BK610" /> 42 - 43 - <meta property="og:type" content="website" /> 44 - <meta property="og:title" content="Bailey Kane" /> 45 - <meta 46 - property="og:description" 47 - content="Bailey Kane | Helping small businesses get more done with technology" 48 - /> 49 - <meta property="og:site_name" content="Bailey Kane's personal website" /> 50 - <meta property="og:url" content="https://baileykane.co" /> 51 - <meta 52 - property="og:image" 53 - content="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.90em%22 font-size=%2290%22>🅱️</text></svg>" 54 - /> 55 - </Head>; */ 56 - } 57 - 58 - export const metadata: Metadata = {}; 5 + export const metadata: Metadata = { 6 + title: "Bailey Kane", 7 + description: 8 + "Bailey Kane | Helping small businesses get more done with technology", 9 + creator: "Bailey Kane", 10 + manifest: "https://www.baileykane.co/manifest.json", 11 + twitter: { 12 + card: "summary", 13 + title: "Bailey Kane", 14 + description: 15 + "Bailey Kane | Helping small businesses get more done with technology", 16 + creator: "@BK610", 17 + }, 18 + openGraph: { 19 + title: "Bailey Kane", 20 + description: 21 + "Bailey Kane | Helping small businesses get more done with technology", 22 + url: "https://www.baileykane.co/", 23 + siteName: "BaileyKane.co", 24 + locale: "en_US", 25 + type: "website", 26 + }, 27 + }; 59 28 60 29 export default function RootLayout({ 61 30 // Layouts must accept a children prop.