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:
theoleuthardt 2025-02-20 21:55:54 +01:00
parent 1399809ebb
commit ab601b53fe
3 changed files with 127 additions and 4 deletions

View 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>
);
}