Skip to content

Commit

Permalink
increment versions and general improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
hgonzaga committed Oct 8, 2024
1 parent d898a5f commit 9544c86
Show file tree
Hide file tree
Showing 7 changed files with 715 additions and 616 deletions.
2 changes: 1 addition & 1 deletion app/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import PostPreview from '@/components/postPreview';
import PostPreview from '@/components/PostPreview';
import getPostMetadata from '@/components/getPostMetadata';
import { Metadata } from 'next';

Expand Down
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import './globals.css';
import type { Metadata } from 'next';
import localFont from 'next/font/local';
import clsx from 'clsx';
import Navbar from '@/components/navBar';
import Navbar from '@/components/NavBar';

const font = localFont({
src: '../public/fonts/RobotoCondensed-Regular.ttf',
Expand Down
2 changes: 1 addition & 1 deletion components/PostPreview.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Link from 'next/link';
import { PostMetadata } from './postMetadata';
import { PostMetadata } from './PostMetadata';

export default function PostPreview(props: PostMetadata) {
return (
Expand Down
2 changes: 1 addition & 1 deletion components/getPostMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from 'fs';
import matter from 'gray-matter';
import { PostMetadata } from '@/components/postMetadata';
import { PostMetadata } from '@/components/PostMetadata';

const getPostMetadata = (): PostMetadata[] => {
const folder = 'posts/';
Expand Down
10 changes: 5 additions & 5 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// @ts-check

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
}
/* config options here */
};

module.exports = nextConfig
module.exports = nextConfig;
Loading

0 comments on commit 9544c86

Please sign in to comment.