Skip to content

Commit

Permalink
add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniobiasotti committed Apr 17, 2024
1 parent 0b11ce9 commit 1943891
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Binary file added src/app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 9 additions & 6 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@ import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

const inter = Inter({ subsets: ["latin"], variable: '--font inter' });
const inter = Inter({
subsets: ["latin"],
variable: '--font-inter',
});

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

export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en">
<body className={inter.variable}>{children}</body>
<html className={inter.variable} lang="pt">
<body>{children}</body>
</html>
);
}
Empty file added src/app/search/page.tsx
Empty file.

0 comments on commit 1943891

Please sign in to comment.