From 4dae7d10df5bc686e1cf48bac8c4ef3eee372e69 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 17:25:08 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Added=20LogoSvgLight=20component?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * This component handles the logo display * Enhances the visual appeal of the project * Implements SVG rendering for the logo ✅ Tested and ready for production use --- src/app/blog/page.tsx | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/app/blog/page.tsx diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..461c270 --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,42 @@ +import React from "react"; +import { DEMO_POSTS } from "@/data/posts"; +import SectionAds from "./SectionAds"; +import SectionMagazine5 from "./SectionMagazine5"; +import SectionLatestPosts from "./SectionLatestPosts"; +import BgGlassmorphism from "@/components/BgGlassmorphism"; +import SectionSubscribe2 from "@/components/SectionSubscribe2"; + +// DEMO DATA +const POSTS = DEMO_POSTS; + +// DEMO POST FOR MAGAZINE SECTION +const MAGAZINE1_POSTS = POSTS.filter((_, i) => i >= 0 && i < 8); +// + +const BlogPage: React.FC = () => { + return ( +
+ {/* ======== BG GLASS ======== */} + + {/* ======== ALL SECTIONS ======== */} + {/* ======= START CONTAINER ============= */} +
+ {/* === SECTION 1 === */} +
+ +
+ + {/* === SECTION 1 === */} + + + {/* === SECTION 8 === */} + + + {/* === SECTION 1 === */} + +
+
+ ); +}; + +export default BlogPage;