Skip to content

Commit

Permalink
chore: general cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkflame72 committed May 5, 2024
1 parent 03ab8b5 commit b2b293e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
8 changes: 4 additions & 4 deletions src/components/Head.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { getImage } from "astro:assets";
import faviconSvgSrc from "@images/icon.svg";
import faviconSrc from "@images/icon.png";
import { SITE, OG } from "../data";
import { SITE } from "../data";
interface Props {
meta: string;
Expand All @@ -19,10 +19,10 @@ const { meta = defaultProps.meta, title } = Astro.props;
const URL = `${Astro.site}`;
const canonical = Astro.url.href;
const ogTitle = OG.title;
const ogDescription = OG.description;
const ogTitle = SITE.title;
const ogDescription = SITE.description;
const socialImageRes = await getImage({
src: OG.image,
src: SITE.image,
width: 1200,
height: 600,
});
Expand Down
14 changes: 2 additions & 12 deletions src/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,20 +142,10 @@ export const people: Person[] = [
export const SITE = {
title: "Tūhura Tech",
tagline: "Empowering the next generation through Technology Education.",
description:
"Tūhura Tech offers top-tier hardware tools and expert construction services to meet all your project needs. Start exploring and contact our sales team for superior quality and reliability.",
description: "Empowering the next generation through Technology Education",
description_short:
"Tūhura Tech offers top-tier hardware tools and expert construction services to meet all your project needs.",
"Empowering the next generation through Technology Education",
url: "https://tuhuratech.org.nz",
author: "Tūhura Tech",
};

export const OG = {
type: "website",
url: SITE.url,
title: `${SITE.title}: : Hardware Tools & Construction Services`,
description:
"Equip your projects with Tūhura Tech's top-quality hardware tools and expert construction services. Trusted by industry leaders, Tūhura Tech offers simplicity, affordability, and reliability. Experience the difference with user-centric design and cutting-edge tools. Start exploring now!",
image: ogImageSrc,
};

Expand Down

0 comments on commit b2b293e

Please sign in to comment.