diff --git a/public/word-salad.css b/public/word-salad.css
new file mode 100644
index 0000000..9aac2b4
--- /dev/null
+++ b/public/word-salad.css
@@ -0,0 +1,3 @@
+@view-transition {
+ navigation: auto;
+}
diff --git a/resources/views/admin-home.blade.php b/resources/views/admin-home.blade.php
new file mode 100644
index 0000000..851f8eb
--- /dev/null
+++ b/resources/views/admin-home.blade.php
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ config('blog.publishing_name') }} | Home
+
+
+
+ Hey guys, check back soon for some word-based #content
+
+
+
+
+
+
+
diff --git a/resources/views/all-articles.blade.php b/resources/views/all-articles.blade.php
new file mode 100644
index 0000000..a1735b3
--- /dev/null
+++ b/resources/views/all-articles.blade.php
@@ -0,0 +1,8 @@
+
+ Count: {{ count($all_articles) }}
+ @forelse($all_articles as $index => $article)
+ @include('article-preview')
+ @empty
+
No articles found, unlucky.
+ @endforelse
+
diff --git a/resources/views/article-preview.blade.php b/resources/views/article-preview.blade.php
new file mode 100644
index 0000000..1fa0ba3
--- /dev/null
+++ b/resources/views/article-preview.blade.php
@@ -0,0 +1,6 @@
+
+ {{ $article['title'] }}
+ hey
+
+ {{ Illuminate\Support\Str::limit($article['body'], 200) }}
+
diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php
index a0f0fce..401172c 100644
--- a/resources/views/home.blade.php
+++ b/resources/views/home.blade.php
@@ -4,11 +4,14 @@
+
+
{{ config('blog.publishing_name') }} | Home
-
- Hey guys, check back soon for some word-based #content
-
+
+ Hey guys, check back soon for some word-based #content
+ Recent Articles
+