Skip to content

Commit

Permalink
chore: adding meta title to contact and blog page
Browse files Browse the repository at this point in the history
  • Loading branch information
Reynadi531 committed Aug 24, 2024
1 parent 9194983 commit bcf75a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/app/(pages)/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import { Metadata } from 'next';
import React from 'react';

import BlankCard from '@/components/Card/BlankCard';
import { Navbar } from '@/components/Sections';
import Footer from '@/components/Sections/Footer';

export const metadata: Metadata = {
title: 'Blog',
};

const BlogPage = () => {
return (
<>
Expand Down
6 changes: 5 additions & 1 deletion src/app/(pages)/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import { NextPage } from 'next';
import { Metadata, NextPage } from 'next';
import Link from 'next/link';

import { Navbar } from '@/components/Sections';
import Footer from '@/components/Sections/Footer';

import { IconListJumbotron } from '@/constants';

export const metadata: Metadata = {
title: 'Contact',
};

const ContactPage: NextPage = () => {
return (
<>
Expand Down

0 comments on commit bcf75a4

Please sign in to comment.