diff --git a/frontend/src/components/Title.tsx b/frontend/src/components/Title.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..934e78531213b02868aa4ad723536db334c87a69
--- /dev/null
+++ b/frontend/src/components/Title.tsx
@@ -0,0 +1,11 @@
+type Props = {
+  children: string
+}
+
+export const Title = ({ children }: Props) => {
+  return (
+    <div className="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white">
+      {children}
+    </div>
+  )
+}
\ No newline at end of file