Skip to content

Commit

Permalink
Merge pull request #36 from Daoud-Hussain/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Daoud-Hussain authored Nov 19, 2024
2 parents 2d0eaac + c1df24b commit f68de05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ RUN npm run build
EXPOSE 3000

# Command to start the application with dynamic port support
CMD ["sh", "-c", "PORT=${PORT:-3000} npm start"]
CMD ["sh", "-c", "PORT=${PORT:-3000} npm start"]
4 changes: 2 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import Link from 'next/link';

export const metadata = {
title: "App Router",
title: "Next.js Website",
};

export default function Page() {
return (
<div className="bg-gray-50 div-container min-h-screen flex flex-col items-center">
<header className="w-full max-w-7xl flex justify-center items-center p-5 bg-white shadow-md">
<div className="flex justify-between w-full max-w-4xl">
<h1 className="text-3xl font-bold text-blue-600">My Next.js Site</h1>
<h1 className="text-3xl font-bold text-blue-600">Next.js Site</h1>
<nav className="space-x-4">
<a href="#" className="text-gray-600 hover:text-blue-600">Home</a>
<a href="#" className="text-gray-600 hover:text-blue-600">About</a>
Expand Down

0 comments on commit f68de05

Please sign in to comment.