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