All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 3s
Made project make heavier use of component-based rendering and broke parts of layout into separate files for making future layout files easier and less redundant
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
const date = new Date();
|
|
const formattedDate = date.toLocaleDateString('en-GB', {
|
|
day: '2-digit',
|
|
month: 'short',
|
|
year: 'numeric'
|
|
});
|
|
|
|
export default {
|
|
author: {
|
|
name: "Cyper",
|
|
socials: [
|
|
{ name: "Twitter", url: "https://twitter.com/Cyperita", icon: "logo-twitter" },
|
|
{ name: "YouTube", url: "https://www.youtube.com/@Cyperita", icon: "logo-youtube" },
|
|
{ name: "TikTok", url: "https://www.tiktok.com/@cyperita", icon: "logo-tiktok" },
|
|
{ name: "Instagram", url: "https://www.instagram.com/cyperita/", icon: "logo-instagram" },
|
|
{ name: "RSS", url: "https://cy.cyper.cc/rss.xml", icon: "logo-rss" },
|
|
],
|
|
|
|
sites: [
|
|
{ name: "Main Site", url: "https://cy.cyper.cc", icon: "home-sharp" },
|
|
{ name: "Gitea", url: "https://gitea.cyper.cc", icon: "code-slash-sharp" },
|
|
],
|
|
|
|
// TODO: email / newsletter sign up?
|
|
consumables: [
|
|
{ name: "RSS Feed", url: "https://cy.cyper.cc/rss.xml", icon: "logo-rss" },
|
|
]
|
|
},
|
|
|
|
title: "Cy-by-Side",
|
|
url: "https://cy.cyper.cc/",
|
|
rss: "https://cy.cyper.cc/rss.xml",
|
|
language: "en",
|
|
description: "Cy by Side with Cyper: Tangents, Tech, and Thoughtful Takes.",
|
|
date: formattedDate,
|
|
year: date.getFullYear()
|
|
} |