Skip to content

Commit 293b4f1

Browse files
committed
Rename background and logo images
1 parent a7c58a6 commit 293b4f1

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Metadata } from "next";
22
import { Rubik, Space_Mono } from "next/font/google";
33
import Image from "next/image";
4-
import BackgroundImage from "@/public/img/background-arctic-fox.jpg";
4+
import BackgroundImage from "@/public/img/background.jpg";
55
import "./globals.css";
66

77
const rubik = Rubik({
@@ -25,7 +25,7 @@ export const metadata: Metadata = {
2525
title: "Hi, I'm Foxed.",
2626
description: "I'm a 15 year old developer and designer from Germany.",
2727
siteName: "FoxedDev",
28-
images: [{ url: "https://foxeddev.github.io/img/logo-foxeddev.png" }],
28+
images: [{ url: "https://foxeddev.github.io/img/logo.png" }],
2929
},
3030
};
3131

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import Image from "next/image";
44
import Link from "next/link";
5-
import Logo from "@/public/img/logo-foxeddev.png";
5+
import Logo from "@/public/img/logo.png";
66
import Card from "@/components/Card";
77

88
import { SiGithub, SiDiscord } from "react-icons/si";

0 commit comments

Comments
 (0)