Skip to content

Commit

Permalink
Merge pull request #76 from vignesh-murugan-dev/page-rename
Browse files Browse the repository at this point in the history
 Code: Page rename - fixes #62
  • Loading branch information
Neha authored Jun 14, 2024
2 parents 9462991 + b246696 commit d907a57
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { cn } from "@/lib/utils";
import { MARKETING } from "@/config/marketing";
import SignupForMeetupCard from "@/components/SignupForMeetupCard";

export default async function IndexPage() {
export default async function page() {
return (
<>
<section className="isolate">
Expand Down
5 changes: 2 additions & 3 deletions app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ABOUT } from "@/config/about";
import { ArrowRight } from "lucide-react";
import Image from "next/image";

const AboutPage = () => {
export default async function page() {
return (
<>
<section className="isolate">
Expand Down Expand Up @@ -154,6 +154,5 @@ const AboutPage = () => {
</section>
</>
);
};
}

export default AboutPage;
2 changes: 1 addition & 1 deletion app/jobs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { cn } from "@/lib/utils";
import Image from "next/image";
import SignupForMeetupCard from "@/components/SignupForMeetupCard";

export default async function JobsPage() {
export default async function page() {
return (
<div>
<section className="flex items-center justify-center flex-col mt-20 lg:mt-[10px]">
Expand Down
2 changes: 1 addition & 1 deletion app/meetups/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { cn } from "@/lib/utils";
import { SPEAKERS } from "@/config/speakers";
import SpeakerCard from "@/components/SpeakerCard";

export default async function SpeakersIndexPage() {
export default async function page() {
return (
<>
<section className="container flex flex-col gap-9 items-center lg:flex-row-reverse lg:justify-around lg:gap-4">
Expand Down
2 changes: 1 addition & 1 deletion app/speakers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { cn } from "@/lib/utils";
import { SPEAKERS } from "@/config/speakers";
import SpeakerCard from "@/components/SpeakerCard";

export default async function SpeakersIndexPage() {
export default async function page() {
return (
<>
<section className="container flex flex-col gap-9 items-center lg:flex-row-reverse lg:justify-around lg:gap-4">
Expand Down

0 comments on commit d907a57

Please sign in to comment.