mirror of
https://github.com/BradNut/personal-website-sveltekit
synced 2025-09-08 23:20:18 +00:00
Fixing og url on images.
This commit is contained in:
parent
965bf16396
commit
0826667fb7
6 changed files with 12 additions and 12 deletions
|
|
@ -19,7 +19,7 @@ export const load: PageServerLoad = async ({ fetch, setHeaders, url }) => {
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=Home | bradleyshellnut.com&page=Hi I'm Bradley Shellnut.&content=I'm a full stack software engineer currently working on Java Spring, PostgreSQL, and React / Angular JS.`,
|
||||
url: `${baseUrl}og?header=Home | bradleyshellnut.com&page=Hi I'm Bradley Shellnut.&content=I'm a full stack software engineer currently working on Java Spring, PostgreSQL, and React / Angular JS.`,
|
||||
alt: 'Bradley Shellnut Website Home Page',
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -30,7 +30,7 @@ export const load: PageServerLoad = async ({ fetch, setHeaders, url }) => {
|
|||
title: 'Home',
|
||||
description: 'Home page',
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=Home | bradleyshellnut.com&page=Hi I'm Bradley Shellnut.&content=I'm a full stack software engineer currently working on Java Spring, PostgreSQL, and React / Angular JS.`,
|
||||
image: `${baseUrl}og?header=Home | bradleyshellnut.com&page=Hi I'm Bradley Shellnut.&content=I'm a full stack software engineer currently working on Java Spring, PostgreSQL, and React / Angular JS.`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=About | bradleyshellnut.com&page=Hey! My name is Bradley Shellnut.&content=I am a full stack software engineer who's interested in new tech and not afraid to discover new interests.`,
|
||||
url: `${baseUrl}og?header=About | bradleyshellnut.com&page=Hey! My name is Bradley Shellnut.&content=I am a full stack software engineer who's interested in new tech and not afraid to discover new interests.`,
|
||||
alt: 'About Bradley Shellnut',
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -30,7 +30,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
title: 'About',
|
||||
description: 'About page',
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=About | bradleyshellnut.com&page=Hey! My name is Bradley Shellnut.&content=I am a full stack software engineer who's interested in new tech and not afraid to discover new interests.`,
|
||||
image: `${baseUrl}og?header=About | bradleyshellnut.com&page=Hey! My name is Bradley Shellnut.&content=I am a full stack software engineer who's interested in new tech and not afraid to discover new interests.`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ export const load: PageServerLoad = async ({ fetch, params, setHeaders, url }) =
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=Articles Page ${page} | bradleyshellnut.com&page=My favorite articles`,
|
||||
url: `${baseUrl}og?header=Articles Page ${page} | bradleyshellnut.com&page=My favorite articles`,
|
||||
alt: `Bradley Shellnut Articles Page ${page}`,
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -60,7 +60,7 @@ export const load: PageServerLoad = async ({ fetch, params, setHeaders, url }) =
|
|||
title: 'Favorite Articles',
|
||||
description: 'My favorite articles',
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=Articles Page ${page} | bradleyshellnut.com&page=My favorite articles`,
|
||||
image: `${baseUrl}og?header=Articles Page ${page} | bradleyshellnut.com&page=My favorite articles`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export const load: PageServerLoad = async ({ url }) => {
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=Portfolio | bradleyshellnut.com&page=My portfolio of sites I have created.`,
|
||||
url: `${baseUrl}og?header=Portfolio | bradleyshellnut.com&page=My portfolio of sites I have created.`,
|
||||
alt: 'Bradley Shellnut Portfolio Page',
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -31,7 +31,7 @@ export const load: PageServerLoad = async ({ url }) => {
|
|||
title: 'Portfolio',
|
||||
description: "Bradley Shellnut's Portfolio",
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=Portfolio | bradleyshellnut.com&page=My portfolio of sites I have created.`,
|
||||
image: `${baseUrl}og?header=Portfolio | bradleyshellnut.com&page=My portfolio of sites I have created.`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=Privacy Blog | bradleyshellnut.com&page=My thoughts on personal internet privacy.`,
|
||||
url: `${baseUrl}og?header=Privacy Blog | bradleyshellnut.com&page=My thoughts on personal internet privacy.`,
|
||||
alt: 'Bradley Shellnut Privacy Blog',
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -31,7 +31,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
title: 'Privacy Blog',
|
||||
description: 'My thoughts on personal internet privacy.',
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=Privacy Blog | bradleyshellnut.com&page=My thoughts on personal internet privacy.`,
|
||||
image: `${baseUrl}og?header=Privacy Blog | bradleyshellnut.com&page=My thoughts on personal internet privacy.`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
locale: 'en_US',
|
||||
images: [
|
||||
{
|
||||
url: `${baseUrl}?header=Uses | bradleyshellnut.com&page=What I use!`,
|
||||
url: `${baseUrl}og?header=Uses | bradleyshellnut.com&page=What I use!`,
|
||||
alt: 'Bradley Shellnut Uses Page',
|
||||
width: 1200,
|
||||
height: 630
|
||||
|
|
@ -31,7 +31,7 @@ export const load: PageLoad = async ({ url }) => {
|
|||
title: '/Uses',
|
||||
description: "What I use!",
|
||||
card: 'summary_large_image',
|
||||
image: `${baseUrl}?header=Uses | bradleyshellnut.com&page=What I use!`,
|
||||
image: `${baseUrl}og?header=Uses | bradleyshellnut.com&page=What I use!`,
|
||||
imageAlt: 'Bradley Shellnut Website Logo'
|
||||
},
|
||||
url: currentPageUrl
|
||||
|
|
|
|||
Loading…
Reference in a new issue