Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 12 additions & 36 deletions src/app/(site)/blogs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,40 +6,16 @@ export const metadata: Metadata = {
};

export default function BlogsPage() {
return <main aria-label="Blogs" />;
return (
<main aria-label="Blogs" className="flex min-h-[60vh] items-center justify-center px-4">
<section className="max-w-2xl text-center">
<h1 className="mb-4 text-3xl font-semibold text-ink dark:text-white sm:text-4xl">
Blog
</h1>
<p className="text-base text-muted dark:text-white/60">
No posts yet. Guides and deep dives on selling, targeting, and outreach are coming soon.
</p>
</section>
</main>
);
}

// import SingleBlog from "@/components/Blog/SingleBlog";
// import Breadcrumb from "@/components/Common/Breadcrumb";
// import { getAllPosts } from "@/utils/markdown";
// import { Metadata } from "next";

// export const metadata: Metadata = {
// title:
// "Blog Grids | SignalizeAI",
// description: "Blog grids page description",
// };

// const Blog = () => {
// const posts = getAllPosts(["title", "date", "excerpt", "coverImage", "slug"]);

// return (
// <>
// <Breadcrumb pageName="Blog Grids" />

// <section className="pb-10 pt-20 lg:pb-20 lg:pt-[120px]">
// <div className="container">
// <div className="-mx-4 flex flex-wrap justify-center">
// {posts.map((blog, i) => (
// <div key={i} className="w-full px-4 md:w-2/3 lg:w-1/2 xl:w-1/3">
// <SingleBlog blog={blog} />
// </div>
// ))}
// </div>
// </div>
// </section>
// </>
// );
// };

// export default Blog;
1 change: 0 additions & 1 deletion src/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const staticRoutes = [
"/contact",
"/docs",
"/privacy",
"/blogs",
];

export default function sitemap(): MetadataRoute.Sitemap {
Expand Down