import React from "react"; import { Metadata } from "next"; import BlogCards from "@/components/cards/BlogCards"; export const metadata: Metadata = { title: "Blog - SVRJS", description: "Welcome to the SVR.JS Blog! Explore our latest blog posts featuring web development, web application security, and web server administration tips. Stay tuned for the latest SVR.JS updates.", openGraph: { title: "Blog - SVRJS", description: "Welcome to the SVR.JS Blog! Explore our latest blog posts featuring web development, web application security, and web server administration tips. Stay tuned for the latest SVR.JS updates.", url: "https://svrjs.org/blog", type: "website", images: [ { url: "https://svrjs.vercel.app/metadata/svrjs-cover.png", width: 800, height: 600, alt: "Blog - SVRJS", }, ], }, twitter: { card: "summary_large_image", site: "@SVR_JS", title: "Blog - SVRJS", description: "Welcome to the SVR.JS Blog! Explore our latest blog posts featuring web development, web application security, and web server administration tips. Stay tuned for the latest SVR.JS updates.", images: ["https://svrjs.vercel.app/metadata/svrjs-cover.png"], creator: "@SVR_JS", }, }; const BlogPage = async ({ searchParams, }: { searchParams: { page?: string }; }) => { // Optionally, you can fetch some initial data here if needed. return (

SVRJS Blog Post

); }; export default BlogPage;