Skip to content

Commit 5e8678b

Browse files
committed
fix: branding, rename Local -> LCL
1 parent 38a2644 commit 5e8678b

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

public/logo.png

3.99 KB
Loading

src/components/Footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
&copy; {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>

src/components/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ReactNode } from 'react';
21
import Head from 'next/head';
2+
import { ReactNode } from 'react';
33
import { Footer } from './Footer';
44
import 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>

src/components/Nav.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import { useState } from 'react';
21
import Link from 'next/link';
3-
2+
import { useState } from 'react';
43
import { LinkButton } from './shared/link';
54
import { 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>

0 commit comments

Comments
 (0)