Skip to content

Commit

Permalink
Update SEO title and descriptions per page, and add OpenGraph and Twi…
Browse files Browse the repository at this point in the history
…tter images
  • Loading branch information
adamjarling committed May 31, 2024
1 parent 048214e commit 020c4a8
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 2 deletions.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion public/vercel.svg

This file was deleted.

6 changes: 6 additions & 0 deletions src/app/contact/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import ContactCard from "@/components/contact/card";
import Container from "@/components/layout/container";
import Header from "@/components/layout/header";
import MainWrapper from "@/components/layout/main-wrapper";
import { Metadata } from "next";

const contactCards = [
{
Expand Down Expand Up @@ -33,6 +34,11 @@ const contactCards = [
},
];

export const metadata: Metadata = {
title: "Contact",
description: "Contact the Hyku team",
};

export default function ContactPage() {
return (
<div className="">
Expand Down
5 changes: 5 additions & 0 deletions src/app/features/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ import FeatureList from "@/components/features/list";
import Header from "@/components/layout/header";
import Implementations from "@/components/features/implementations";
import MainWrapper from "@/components/layout/main-wrapper";
import { Metadata } from "next";
import PageHeader from "@/components/page-header";

export const metadata: Metadata = {
title: "Features and Implementations",
};

export default async function FeaturesPage() {
return (
<div className="">
Expand Down
5 changes: 5 additions & 0 deletions src/app/getting-started/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ import GettingStartedList from "@/components/getting-started/list";
import Header from "@/components/layout/header";
import HostedSolutions from "@/components/hosted-solutions";
import MainWrapper from "@/components/layout/main-wrapper";
import { Metadata } from "next";
import PageHeader from "@/components/page-header";

export const metadata: Metadata = {
title: "Getting Started",
};

export default function GettingStartedPage() {
return (
<div className="">
Expand Down
6 changes: 6 additions & 0 deletions src/app/news/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ import BgLayer from "@/components/layout/bg-layer";
import Container from "@/components/layout/container";
import Header from "@/components/layout/header";
import MainWrapper from "@/components/layout/main-wrapper";
import { Metadata } from "next";
import NewsList from "@/components/news/list";
import PageHeader from "@/components/page-header";

export const metadata: Metadata = {
title: "News and Events",
description: "Keep up with the latest news and events in the Hyku ecosystem",
};

export default function Homepage() {
return (
<div className="">
Expand Down
Binary file added src/app/opengraph-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/app/presentations/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ import BgLayer from "@/components/layout/bg-layer";
import Container from "@/components/layout/container";
import Header from "@/components/layout/header";
import MainWrapper from "@/components/layout/main-wrapper";
import { Metadata } from "next";
import PageHeader from "@/components/page-header";
import PresentationsList from "@/components/presentations/list";

export const metadata: Metadata = {
title: "Presentations and Demos",
description: "View presentations and demos about Hyku and its ecosystem.",
};

export default function PresentationsPage() {
return (
<div className="">
Expand Down
Binary file added src/app/twitter-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 020c4a8

Please sign in to comment.