2024-06-22 04:50:53 +02:00
|
|
|
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;
|