Skip to content

Commit

Permalink
site config ayarları yapıldı
Browse files Browse the repository at this point in the history
  • Loading branch information
eminboydak committed Jan 24, 2024
1 parent e5fe14d commit bb878d2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions public/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eminboydak-blog",
"name": "emin's logbook",
"short_name": "eminboydak-blog",
"description": "eminboydak-blog",
"description": "emin's logbook",
"icons": [
{
"src": "/192x192.png",
Expand Down
68 changes: 34 additions & 34 deletions src/site.config.ts
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
import type { SiteConfig } from "@/types";

export const siteConfig: SiteConfig = {
// Used as both a meta property (src/components/BaseHead.astro L:31 + L:49) & the generated satori png (src/pages/og-image/[slug].png.ts)
author: "Chris Williams",
// Meta property used to construct the meta title property, found in src/components/BaseHead.astro L:11
title: "Astro Theme Cactus",
// Meta property used as the default description meta property
description: "An opinionated starter theme for Astro",
// HTML lang property, found in src/layouts/Base.astro L:18
lang: "en-GB",
// Meta property, found in src/components/BaseHead.astro L:42
ogLocale: "en_GB",
// Date.prototype.toLocaleDateString() parameters, found in src/utils/date.ts.
date: {
locale: "en-GB",
options: {
day: "numeric",
month: "short",
year: "numeric",
},
},
webmentions: {
link: "https://webmention.io/astro-cactus.chriswilliams.dev/webmention",
},
// Used as both a meta property (src/components/BaseHead.astro L:31 + L:49) & the generated satori png (src/pages/og-image/[slug].png.ts)
author: "Muhammed Emin Boydak",
// Meta property used to construct the meta title property, found in src/components/BaseHead.astro L:11
title: "emin's logbook",
// Meta property used as the default description meta property
description: " ",
// HTML lang property, found in src/layouts/Base.astro L:18
lang: "en-US",
// Meta property, found in src/components/BaseHead.astro L:42
ogLocale: "en_US",
// Date.prototype.toLocaleDateString() parameters, found in src/utils/date.ts.
date: {
locale: "en-US",
options: {
day: "numeric",
month: "short",
year: "numeric",
},
},
webmentions: {
link: "https://webmention.io/astro-cactus.chriswilliams.dev/webmention",
},
};

// Used to generate links in both the Header & Footer.
export const menuLinks: Array<{ title: string; path: string }> = [
{
title: "Home",
path: "/",
},
{
title: "About",
path: "/about/",
},
{
title: "Blog",
path: "/posts/",
},
{
title: "home",
path: "/",
},
{
title: "about",
path: "/about/",
},
{
title: "blog",
path: "/posts/",
},
];

0 comments on commit bb878d2

Please sign in to comment.