Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 44a3de7

Browse files
author
VisShon
committed
updates
1 parent 9544682 commit 44a3de7

File tree

6 files changed

+1429
-1230
lines changed

6 files changed

+1429
-1230
lines changed

package-lock.json

Lines changed: 182 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pages/_app.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
import '../styles/globals.css'
2-
2+
import Head from 'next/head'
33
export default function MyApp({ Component, pageProps }) {
4-
return <Component {...pageProps} />
4+
return(
5+
<>
6+
<Head>
7+
<link rel="icon" src='../pubilc/favicon.ico' />
8+
<title>Potentio</title>
9+
</Head>
10+
<Component {...pageProps} />
11+
</>
12+
13+
)
514
}
615

pages/_document.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class MyDocument extends Document {
1717
<link rel="preconnect" href="https://fonts.googleapis.com" />
1818
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin />
1919
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap" rel="stylesheet" />
20+
2021
</Head>
2122
<body>
2223
<Main />

pages/index.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import Head from 'next/head';
55
import React, { useEffect } from "react";
66
import axios from "axios";
7+
import Fav from '../public/assets/favicon.ico';
78
import Header from "../components/Header";
89
import Laptop1 from "../public/assets/svg/laptop1.svg";
910
import Symbols from "../public/assets/svg/symbols.svg";
@@ -24,7 +25,7 @@ export default function LandingPage() {
2425
<lol>
2526
<Head>
2627
<title>Potentio</title>
27-
<link rel="icon" href="public/favicon.ico" />
28+
<link rel="icon" src={Fav} />
2829
</Head>
2930
<Header />
3031
<div hidden="" id="desktop">
File renamed without changes.

0 commit comments

Comments
 (0)