diff --git a/src/components/Card.astro b/src/components/Card.astro
deleted file mode 100644
index ee57d4d..0000000
--- a/src/components/Card.astro
+++ /dev/null
@@ -1,62 +0,0 @@
----
-export interface Props {
- title: string;
- body: string;
- href: string;
-}
-
-const { href, title, body } = Astro.props;
----
-
-
-
-
- {title}
- →
-
-
- {body}
-
-
-
-
diff --git a/src/components/HeadCommon.astro b/src/components/HeadCommon.astro
new file mode 100644
index 0000000..038a424
--- /dev/null
+++ b/src/components/HeadCommon.astro
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/src/components/HeadSEO.astro b/src/components/HeadSEO.astro
new file mode 100644
index 0000000..e69de29
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index f1a62a5..7957369 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -1,35 +1,15 @@
---
-export interface Props {
- title: string;
-}
-
-const { title } = Astro.props;
+import HeadCommon from '../components/HeadCommon.astro';
+import HeadSEO from '../components/HeadSEO.astro';
---
-
+
-
-
-
-
- {title}
+
+
-