File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ const Footer = () => {
77 < section className = "w-11/12 mx-auto" >
88 < div className = "flex flex-col md:flex-row items-center justify-between" >
99 < div className = "my-2 md:my-0" >
10- < h1 className = "text-xl font-black tracking-wide text-secondary-800 " >
11- Local < span className = "text-primary-500" > Paste</ span >
10+ < h1 className = "text-lg font-black tracking-wide text-secondary-700 " >
11+ LCL < span className = "text-primary-500" > Paste</ span >
1212 </ h1 >
13- < p className = "text-secondary-700 text-center text-sm " >
13+ < p className = "text-secondary-700 text-center text-xs " >
1414 © { new Date ( ) . getFullYear ( ) } | All Rights Reserved
1515 </ p >
1616 < ExternalLinkButton
1717 href = "https://github.com/TheBoringDude"
1818 title = "Phurma project"
19- className = "text-sm text-secondary-500 hover:underline"
19+ className = "text-xs text-secondary-500 hover:underline"
2020 >
2121 @TheBoringDude
2222 </ ExternalLinkButton >
Original file line number Diff line number Diff line change 1- import { ReactNode } from 'react' ;
21import Head from 'next/head' ;
2+ import { ReactNode } from 'react' ;
33import { Footer } from './Footer' ;
44import Navigation from './Nav' ;
55
@@ -12,7 +12,7 @@ export default function Layout({ children, title }: LayoutProps) {
1212 return (
1313 < >
1414 < Head >
15- < title > { title } | Local Paste</ title >
15+ < title > { title } | LCL Paste</ title >
1616 < meta charSet = "utf-8" />
1717 < meta name = "viewport" content = "initial-scale=1.0, width=device-width" />
1818 </ Head >
Original file line number Diff line number Diff line change 1- import { useState } from 'react' ;
21import Link from 'next/link' ;
3-
2+ import { useState } from 'react' ;
43import { LinkButton } from './shared/link' ;
54import { UserNav } from './userNav' ;
65
@@ -12,8 +11,8 @@ const Navigation = () => {
1211 < div className = "w-full sm:w-auto flex items-center justify-between" >
1312 < Link href = "/" >
1413 < a title = "Return Home" >
15- < h1 className = "text-xl font-black tracking-wide" >
16- Local < span className = "text-primary-500" > Paste</ span >
14+ < h1 className = "text-2xl font-black tracking-wide text-secondary-700 " >
15+ LCL < span className = "text-primary-500" > Paste</ span >
1716 </ h1 >
1817 < p className = "text-sm text-secondary-400 tracking-wide" > a simple paste(bin) manager</ p >
1918 </ a >
You can’t perform that action at this time.
0 commit comments