@@ -94,10 +90,8 @@ export default function BlogDetails({ params }: { params: { slug: string } }) {
-
+ {/*
*/}
-
-
>
);
}
diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index cc3314c..0ceabc9 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -1,5 +1,3 @@
-import Footer from '@/components/Footer';
-import Navigation from '@/components/Navigation';
import ReadLikely from '@/components/ReadLikely';
import ReadMore from '@/components/ReadMore';
import { TypographyH1 } from '@/components/Typography';
@@ -13,7 +11,6 @@ export const metadata: Metadata = {
function BlogPage() {
return (
<>
-
The Faraday Blog
@@ -23,7 +20,6 @@ function BlogPage() {
-
>
);
}
diff --git a/src/app/blog/tags/page.tsx b/src/app/blog/tags/page.tsx
new file mode 100644
index 0000000..6217303
--- /dev/null
+++ b/src/app/blog/tags/page.tsx
@@ -0,0 +1,56 @@
+import React from 'react';
+import { TypographyH1, TypographyH3 } from '@/components/Typography';
+import BlogCard from '@/components/BlogCard';
+import Tags from '@/components/Tags';
+import SearchIcon from '@/images/search-icon.svg';
+import { Metadata } from 'next';
+
+export const metadata: Metadata = {
+ title: 'Faraday - Tags',
+};
+
+function TagPage() {
+ return (
+ <>
+
+
+ The Faraday Blog
+
+
+
+
+
Tech
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
+
+export default TagPage;
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c7ac080..c8a2168 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,6 +1,8 @@
import React from 'react';
import '@/styles/globals.css';
import { Roboto } from 'next/font/google';
+import Navigation from '@/components/Navigation';
+import Footer from '@/components/Footer';
const roboto = Roboto({
subsets: ['latin'],
@@ -14,7 +16,9 @@ const RootLayout = ({ children }: React.PropsWithChildren) => {
+
{children}
+