Password Generator finished and working

This commit is contained in:
DomenikW 2025-02-19 16:15:27 +01:00
parent e348ea2aa9
commit 5930e8764d
5 changed files with 235 additions and 1 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[2].title,
description: "Converter for rgb to hex color format!",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`antialiased`}>{children}</body>
</html>
);
}