Skip to content

Commit

Permalink
Add favicon and title
Browse files Browse the repository at this point in the history
  • Loading branch information
phlmn committed Oct 7, 2023
1 parent 6150fc7 commit 94bcf88
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 1 deletion.
40 changes: 40 additions & 0 deletions src/app/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
import { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
title: { absolute: "transcribee — The open source automatic transcription tool", template: "%s — transcribee" },
openGraph: {
title: { absolute: "transcribee — The open source automatic transcription tool", template: "%s — transcribee" },
description: 'The open source automatic transcription tool',
siteName: "transcribee",
},
}

export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
Expand Down
10 changes: 9 additions & 1 deletion src/app/pricing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import { Metadata } from 'next';
import { Page } from '../../components/Page';

export default function HomePage() {
export const metadata: Metadata = {
title: 'Pricing',
openGraph: {
title: 'Pricing'
}
}

export default function PricingPage() {
return (
<Page>
<h1>Pricing</h1>
Expand Down

0 comments on commit 94bcf88

Please sign in to comment.