svrjs-nextjs-website/app/(root)/blog/page.tsx

12 lines
209 B
TypeScript
Raw Normal View History

2024-07-30 21:17:07 +02:00
import React from "react";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Blog - SVRJS",
};
const BlogPage = () => {
return <div>BlogPage</div>;
};
export default BlogPage;