Skip to content

Commit

Permalink
viweport update
Browse files Browse the repository at this point in the history
  • Loading branch information
mluena committed Oct 1, 2024
1 parent a37e017 commit 439d279
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/app/(auth)/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Signin from "@/components/forms/signin";
export const metadata: Metadata = {
title: "Sign in | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function SigninPage() {
Expand Down
1 change: 1 addition & 0 deletions client/src/app/(auth)/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Signup from "@/components/forms/signup";
export const metadata: Metadata = {
title: "Sign up | Caribbean Climate smart map",
description: "Caribbean Climate smart map",
viewport: "width=1000, initial-scale=1",
};

export default function SignupPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import DashboardContent from "@/containers/dashboard";
export const metadata: Metadata = {
title: "Dashboard | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function DashboardPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import CollaboratorsForm from "@/containers/collaborators/form";
export const metadata: Metadata = {
title: "Create new collaborator | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function CollaboratorPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
export const metadata: Metadata = {
title: "Changes to approve | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default async function ChangesToApprovePage({ params }: { params: { id: number } }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
export const metadata: Metadata = {
title: "Edit dataset form | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default async function EditDatasetPage({ params }: { params: { id: number } }) {
Expand Down
1 change: 1 addition & 0 deletions client/src/app/(dashboard)/dashboard/datasets/new/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
export const metadata: Metadata = {
title: "New dataset form | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function NewDatasetPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ToolForm from "@/containers/other-tools/form";
export const metadata: Metadata = {
title: "Create / edit a tool | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function OtherToolsFormPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ProjectForm from "@/containers/projects/form";
export const metadata: Metadata = {
title: "Create / edit a project | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function NewProjectsPage() {
Expand Down
1 change: 1 addition & 0 deletions client/src/app/(password)/reset-password/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ResetPassword from "@/components/forms/reset-password";
export const metadata: Metadata = {
title: "Reset Password | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function ResetPasswordPage() {
Expand Down
3 changes: 2 additions & 1 deletion client/src/app/(password)/update-password/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import { Metadata } from "next";
import PasswordUpdate from "@/components/forms/password-update";

export const metadata: Metadata = {
title: "Reset Password | Caribbean Climate smart map",
title: "Update Password | Caribbean Climate smart map",
description: "Generated by create next app",
viewport: "width=1000, initial-scale=1",
};

export default function UpdatePasswordPage() {
Expand Down
1 change: 1 addition & 0 deletions client/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import LayoutProviders from "./layout-providers";
export const metadata: Metadata = {
title: { template: "%s | CCSA", default: "CCSA" },
description: "Caribbean Climate smart map",
viewport: "width=1000, initial-scale=1",
};

export default async function RootLayout({ children }: PropsWithChildren) {
Expand Down

0 comments on commit 439d279

Please sign in to comment.