From b82a834e2be0b45bdc7cfe243d05e6ea6a7bb88b Mon Sep 17 00:00:00 2001 From: Suvodip Ghosh Date: Tue, 10 Jun 2025 17:44:27 +0530 Subject: [PATCH] fix meta and schema issues --- .astro/settings.json | 2 +- .astro/types.d.ts | 1 + package.json | 3 ++- src/layouts/Layout.astro | 39 ++++++++++++------------------- src/pages/blogs/[id].astro | 23 +++++++++++------- yarn.lock | 48 ++++++++++++++++++++++++++++---------- 6 files changed, 69 insertions(+), 47 deletions(-) diff --git a/.astro/settings.json b/.astro/settings.json index e71de46..df58aa8 100644 --- a/.astro/settings.json +++ b/.astro/settings.json @@ -1,5 +1,5 @@ { "_variables": { - "lastUpdateCheck": 1749458793986 + "lastUpdateCheck": 1749549186203 } } \ No newline at end of file diff --git a/.astro/types.d.ts b/.astro/types.d.ts index f964fe0..03d7cc4 100644 --- a/.astro/types.d.ts +++ b/.astro/types.d.ts @@ -1 +1,2 @@ /// +/// \ No newline at end of file diff --git a/package.json b/package.json index f6f5b4e..ff0e4fb 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,8 @@ "start": "astro dev --preview --port 3000", "build": "astro build", "preview": "astro preview", - "astro": "astro" + "astro": "astro", + "push-prod": "rsync -rv dist/ u2@157.180.25.14:~/web/tst2.teachertrainingkolkata.in/public_html/" }, "dependencies": { "@astrojs/react": "^4.2.1", diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 34813ec..aac1db3 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -12,6 +12,7 @@ export interface Props { } const { title, description, keywords, ogImage, ogUrl, canonicalUrl, newSchema1, newSchema2, newSchema3 } = Astro.props; +console.log('Astro.props', newSchema1, newSchema2, newSchema3) --- @@ -19,7 +20,7 @@ const { title, description, keywords, ogImage, ogUrl, canonicalUrl, newSchema1, -