Skip to content

Commit 5abbd8d

Browse files
committed
some changes
1 parent 694ab6a commit 5abbd8d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/(app)/layout.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const metadata = {
2-
title: 'Next.js',
2+
title: 'account portfolio',
33
description: 'Generated by Next.js',
44
}
55

app/(page)/[uri]/layout.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import '../../globals.css'
55
const lato = Lato({ subsets: ['latin'], weight: ['400', '700'] })
66

77
export const metadata = {
8-
title: 'Create Next App',
8+
title: 'Your Page',
99
description: 'Generated by create next app',
1010
}
1111

app/(website)/layout.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Navbar from '@/components/Navbar'
55
const inter = Inter({ subsets: ['latin'] })
66

77
export const metadata = {
8-
title: 'Create Next App',
8+
title: 'Create Your Portfolio',
99
description: 'Generated by create next app',
1010
}
1111

components/Navbar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Navbar = async () => {
1616
<nav className="flex gap-2 sm:gap-5 font-semibold items-center font-sans text-gray-500">
1717
<Link href={"/account"}>View Page</Link>
1818
<Link href={"/price"}>Price</Link>
19-
<Link href={"/contact"}>Contact</Link>
19+
<Link className="hidden md:block" href={"/contact"}>Contact</Link>
2020
</nav>
2121
</div>
2222
<nav className="flex md:gap-3 gap-1 items-center text-base text-center">

0 commit comments

Comments
 (0)