Skip to content

Commit

Permalink
add about us page
Browse files Browse the repository at this point in the history
  • Loading branch information
ValeuDoamne committed Apr 8, 2024
1 parent 0adab42 commit d443c28
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

export default function About() {
return (
<main className="p-10">
<h1 className="text-3xl font-bold mb-8">About Us</h1>
<p className="text-1xl mb-8">We are a team of individuals who love to use Google products to create beautiful webapps.</p>
<iframe width="600" height="450" loading="lazy" src="https://www.google.com/maps/embed/v1/place?key=AIzaSyCNmLEaMpHZdywwIGMCjtX7mK6Pqof5QKo&q=Faleza,Galati">
</iframe>
</main>
);
}
3 changes: 2 additions & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function Header() {
<nav>
<ul className="flex space-x-4">
<li><Link href="/">Home</Link></li>
<li><Link href="/about">About Us</Link></li>
{Object.keys(user).length > 0 ?
<li className="cursor-pointer" onClick={() => auth.signOut()}>Sign out</li>
:
Expand All @@ -23,4 +24,4 @@ export default function Header() {
</nav>
</header>
)
}
}

0 comments on commit d443c28

Please sign in to comment.