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;