diff --git a/README.md b/README.md
index f649b71..345e6a9 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ You can see a demo of the project at [https://linktreefreeclone.yoandev.co/](htt
1. **Customize your general settings**
- Open `src/config.ts` and edit the `SUBTITLE', 'TITLE' and 'TAGLINE' variables.
+ Open `src/config.ts` and edit the `SUBTITLE`, `TITLE`, `TAGLINE`, `contact`, `phone` and `email` variables.
2. **Customize your links**
diff --git a/src/components/Contact.astro b/src/components/Contact.astro
new file mode 100644
index 0000000..9060cce
--- /dev/null
+++ b/src/components/Contact.astro
@@ -0,0 +1,34 @@
+---
+export interface Props {
+ contact: string;
+ phone: string;
+ email: string;
+}
+
+const { contact, phone, email } = Astro.props;
+---
+