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

13 lines
210 B
TypeScript
Raw Normal View History

import React from 'react';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Blog - SVRJS',
};
2024-06-15 19:24:54 +02:00
const BlogPage = () => {
return <div>BlogPage</div>;
};
export default BlogPage;