Skip to content

Commit

Permalink
Changed favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoroney committed Oct 6, 2024
1 parent 0e1442c commit e431908
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
- name: Build with Next.js 🏗️
run: npx next build

- name: List Build Directory 📂
run: ls -la

- name: Upload artifact 📡
uses: actions/upload-pages-artifact@v3
with:
Expand Down
Binary file modified app/favicon.ico
Binary file not shown.
10 changes: 8 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
import Head from "next/head";

const geistSans = localFont({
src: "./fonts/GeistVF.woff",
Expand All @@ -14,8 +15,8 @@ const geistMono = localFont({
});

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "AutoSubs" as string,
description: "AI-Powered subtitle generation" as string,
};

export default function RootLayout({
Expand All @@ -28,6 +29,11 @@ export default function RootLayout({
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<Head>
<link rel="icon" href="/favicon.ico" />
<title>AutoSubs</title>
<meta name="description" content={metadata.description ?? "Default Description"} />
</Head>
{children}
</body>
</html>
Expand Down
6 changes: 3 additions & 3 deletions components/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ export default function Component() {
</a>
<a
className="text-sm font-medium hover:text-blue-600 text-gray-700"
href="https://github.com/yourusername/autosubs"
href="https://github.com/tmoroney/auto-subs"
target="_blank"
rel="noopener noreferrer"
>
GitHub
</a>
<a
className="text-sm font-medium hover:text-blue-600 text-gray-700 flex items-center"
href="https://discord.gg/yourdiscordinvite"
href="https://discord.com/invite/TBFUfGWegm"
target="_blank"
rel="noopener noreferrer"
>
Expand Down Expand Up @@ -223,7 +223,7 @@ export default function Component() {
</a>
<a
className="text-sm hover:underline underline-offset-4 text-gray-600 flex items-center"
href="https://discord.gg/yourdiscordinvite"
href="https://discord.com/invite/TBFUfGWegm"
target="_blank"
rel="noopener noreferrer"
>
Expand Down

0 comments on commit e431908

Please sign in to comment.