-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
308 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
User-agent: * | ||
Disallow: /terms-and-conditions | ||
Disallow: /privacy-policy | ||
|
||
Sitemap: https://www.biancafiore.me/sitemap-index.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ export const SITE_TITLE = "Bianca Fiore"; | |
export const SITE_DESCRIPTION = "Welcome to my website!"; | ||
|
||
export const CONTACT_DETAILS: Record<string, string> = { | ||
NAME: "Bianca Fiore", | ||
EMAIL_SUBJECT: "Contact form submission", | ||
ENCODED_EMAIL_FROM: btoa("[email protected]"), | ||
ENCODED_BIANCA_EMAIL: btoa("[email protected]"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
id: 'bianca-fiore' | ||
name: 'Bianca Fiore' | ||
description: 'Best content writter ever' | ||
jobTitle: 'Chief in Chief' | ||
currentCompany: 'WorldReader' | ||
profileImage: '/src/assets/images/jpg/bianca-fiore.jpg' | ||
socialNetworks: ['https://instagram.com', 'https://x.com', 'https://linkedin.com'] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,47 @@ | ||
--- | ||
import { CONTACT_DETAILS } from "../consts"; | ||
import { getCollection } from "astro:content"; | ||
import BaseLayout from "@components/templates/baseLayout/BaseLayout.astro"; | ||
import AboutIntro from "@components/molecules/aboutIntro/AboutIntro.astro"; | ||
import LittleMoreOfMe from "@components/organisms/littleMoreOfMe/LittleMoreOfMe.astro"; | ||
import AboutLatestArticles from "@components/organisms/aboutLatestArticles/AboutLatestArticles.astro"; | ||
import Breadcrumbs from "@components/molecules/breadcrumbs/Breadcrumbs.astro"; | ||
const authors = await getCollection("authors"); | ||
const articles = await getCollection("articles"); | ||
const bianca = authors.find((author) => author.data.name === CONTACT_DETAILS.NAME); | ||
const latestArticleByBianca = articles | ||
.sort((a, b) => new Date(b.data.publishDate).valueOf() - new Date(a.data.publishDate).valueOf()) | ||
.find((article) => article.data.author.slug === bianca.data.id); | ||
--- | ||
|
||
<BaseLayout title="" description=""> | ||
<Breadcrumbs classNames="about-page" /> | ||
<AboutIntro /> | ||
<LittleMoreOfMe /> | ||
<AboutLatestArticles /> | ||
<script type="application/ld+json" set:html= {JSON.stringify({ | ||
"@context": "https://schema.org", | ||
"@type": "ProfilePage", | ||
"mainEntity": { | ||
"@id": "#bianca", | ||
"@type": "Person", | ||
"name": bianca.data.name, | ||
"url": new URL(Astro.url).href, | ||
"image": new URL(bianca.data.profileImage, Astro.url).href, | ||
"jobTitle": bianca.data.jobTitle, | ||
"worksFor": { | ||
"@type": "Organization", | ||
"name": bianca.data.currentCompany | ||
} | ||
}, | ||
"hasPart": [{ | ||
"@type": "Article", | ||
"headline": latestArticleByBianca.data.title, | ||
"url": new URL(`articles/${latestArticleByBianca.slug}`, Astro.url).href, | ||
"datePublished": latestArticleByBianca.data.publishDate, | ||
"author": { "@id": "#bianca" } | ||
}], | ||
"sameAs":[...bianca.data.socialNetworks] | ||
})}/> | ||
</BaseLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.