Skip to content

Commit

Permalink
added blank transaltion page
Browse files Browse the repository at this point in the history
  • Loading branch information
suvanbanerjee committed Jun 15, 2024
1 parent 3a4d8a5 commit 51c7af7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/(default)/translation/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export const metadata = {
title: 'Translation',
description: 'Translate',
}

import Translation from "@/components/translation"

export default function translation() {
return (
<>
<Translation />
</>
)
}
7 changes: 7 additions & 0 deletions components/translation.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export default function Translation() {
return (
<section className="relative">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</section>
)
}
1 change: 1 addition & 0 deletions components/ui/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default function Footer() {
<li><Link href="https://openvoiceos.github.io/ovos-technical-manual" className="mr-4 hover:underline md:mr-6 ">Documentation</Link></li>
<li><Link href="/team" className="mr-4 hover:underline md:mr-6 ">Teams</Link></li>
<li><Link href="#" className="mr-4 hover:underline md:mr-6 ">Blog</Link></li>
<li><Link href="/translation" className="mr-4 hover:underline md:mr-6 ">Translation</Link></li>
</ul>
<span className="text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <Link href="/" className="hover:underline">Open Voice OS</Link>. All Rights Reserved.</span>
</div>
Expand Down

0 comments on commit 51c7af7

Please sign in to comment.