Skip to content

Commit

Permalink
app name
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Apr 2, 2023
1 parent 31f65a5 commit 7bb6884
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/modules/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Header = () => {
<div className="ml-10 hidden md:inline-flex">
<a href="#" className="inline-flex flex-row items-center">
<span className="ml-1 text-2xl font-bold uppercase leading-10 text-accent">
UAVnet
{process.env.NEXT_PUBLIC_SITE_NAME || "Next ZTnet"}
</span>
</a>
</div>
Expand Down
6 changes: 4 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ const Home: NextPage<{ auth: User }> = ({ auth }) => {
return (
<>
<Head>
<title>UAVnet</title>
<title> {process.env.NEXT_PUBLIC_SITE_NAME || "Next ZTnet"}</title>
<meta name="description" content="Generated by create-t3-app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<main className="flex min-h-screen flex-col">
{/* Header */}
<div className="mx-auto flex w-4/6">
<div>
<h1 className="mb-3 text-5xl font-bold">uavnet</h1>
<h1 className="mb-3 text-5xl font-bold">
{process.env.NEXT_PUBLIC_SITE_NAME || "Next ZTnet"}
</h1>
</div>
{!auth ? (
<div className="m-3 mx-0 flex w-10/12 justify-end">
Expand Down
4 changes: 3 additions & 1 deletion src/pages/network/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const Networks: NextPageWithLayout = () => {
return (
<>
<Head>
<title>UAVnet - Networks</title>
<title>
{process.env.NEXT_PUBLIC_SITE_NAME || "Next ZTnet"} - Networks
</title>
<meta name="description" content="UAV vpn Networks" />
<link rel="icon" href="/favicon.ico" />
</Head>
Expand Down

0 comments on commit 7bb6884

Please sign in to comment.