mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: new timezone converter, just three inputs for time, your timezone and the destination timezone, design is analogous to the other converters
This commit is contained in:
parent
1399809ebb
commit
ab601b53fe
3 changed files with 127 additions and 4 deletions
20
frontend/src/app/tmz-converter/layout.tsx
Normal file
20
frontend/src/app/tmz-converter/layout.tsx
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import React from "react";
|
||||
import type { Metadata } from "next";
|
||||
import { toolLinks } from "@/constants";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: toolLinks[1].title,
|
||||
description: "Converter for timezones!",
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`antialiased`}>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue