diff --git a/.bundle/config b/.bundle/config
new file mode 100644
index 00000000..23692288
--- /dev/null
+++ b/.bundle/config
@@ -0,0 +1,2 @@
+---
+BUNDLE_PATH: "vendor/bundle"
diff --git a/.gitignore b/.gitignore
index 2ca86829..30474faf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ _site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
+vendor/
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 00000000..68b13472
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,16 @@
+
+
+ {% include head.html %}
+
+
+ {% include header.html %}
+
+
+
{{page.title}}
+
+ {{content}}
+
+ {% include footer.html %}
+
+
+
diff --git a/about.md b/about.md
new file mode 100644
index 00000000..1cc9fe75
--- /dev/null
+++ b/about.md
@@ -0,0 +1,16 @@
+---
+title: About
+layout: page
+---
+
+This is a sample page using the new page layout.
+
+## Features
+
+- Simple and clean design
+- No date or categories
+- Perfect for static pages like About, Contact, etc.
+
+## Content
+
+You can add any markdown content here and it will be rendered properly.
diff --git a/contact.md b/contact.md
new file mode 100644
index 00000000..dbbbacdd
--- /dev/null
+++ b/contact.md
@@ -0,0 +1,16 @@
+---
+title: Contact
+layout: page
+---
+
+## Get in Touch
+
+Feel free to reach out if you have any questions or suggestions.
+
+### Contact Information
+
+- **Email:** contact@example.com
+- **Twitter:** @example
+- **GitHub:** github.com/example
+
+This page demonstrates the flexibility of the new page layout.