File tree Expand file tree Collapse file tree
organizations/[id]/grants
profile/[username]/projects Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import React from 'react ' ;
1+ import { redirect } from 'next/navigation ' ;
22import { Metadata } from 'next' ;
33import { generatePageMetadata } from '@/lib/metadata' ;
44
55export const metadata : Metadata = generatePageMetadata ( 'grants' ) ;
66
77const GrantPage = ( ) => {
8+ redirect ( '/coming-soon' ) ;
89 return (
910 < div className = 'mx-auto mt-10 max-w-[1440px] px-5 py-5 text-center text-4xl font-bold text-white md:px-[50px] lg:px-[100px]' >
1011 Bounties Page
Original file line number Diff line number Diff line change 1- import React from 'react ' ;
1+ import { redirect } from 'next/navigation ' ;
22import { Metadata } from 'next' ;
33import { generatePageMetadata } from '@/lib/metadata' ;
44
55export const metadata : Metadata = generatePageMetadata ( 'contact' ) ;
66
77const ContactPage = ( ) => {
8+ redirect ( '/coming-soon' ) ;
89 return (
910 < div className = 'mx-auto mt-10 max-w-[1440px] px-5 py-5 text-center text-4xl font-bold text-white md:px-[50px] lg:px-[100px]' >
1011 Contact Page
Original file line number Diff line number Diff line change 1- import React from 'react ' ;
1+ import { redirect } from 'next/navigation ' ;
22import { Metadata } from 'next' ;
33import { generatePageMetadata } from '@/lib/metadata' ;
44
55export const metadata : Metadata = generatePageMetadata ( 'grants' ) ;
66
77const GrantPage = ( ) => {
8+ redirect ( '/coming-soon' ) ;
89 return (
910 < div className = 'mx-auto mt-10 max-w-[1440px] px-5 py-5 text-center text-4xl font-bold text-white md:px-[50px] lg:px-[100px]' >
1011 Grant Page
Original file line number Diff line number Diff line change 1+ import { redirect } from 'next/navigation' ;
12import { AuthGuard } from '@/components/auth' ;
23import Loading from '@/components/Loading' ;
34
45export default function GrantsPage ( ) {
6+ redirect ( '/coming-soon' ) ;
57 return (
68 < AuthGuard redirectTo = '/auth?mode=signin' fallback = { < Loading /> } >
79 < div className = 'min-h-screen bg-black text-white' >
Original file line number Diff line number Diff line change 1- import React from 'react' ;
2-
1+ import { redirect } from 'next/navigation' ;
32const Page = ( ) => {
4- return < div > Projects </ div > ;
3+ redirect ( '/coming-soon' ) ;
54} ;
65
76export default Page ;
Original file line number Diff line number Diff line change 1+ import ComingSoon from '@/components/ComingSoon' ;
2+ import { Footer , Navbar } from '@/components/landing-page' ;
3+ import React from 'react' ;
4+
5+ const page = ( ) => {
6+ return (
7+ < >
8+ < Navbar />
9+ < main className = 'min-h-[calc(100vh-56px)] flex-1' >
10+ < ComingSoon />
11+ </ main >
12+ < Footer />
13+ </ >
14+ ) ;
15+ } ;
16+
17+ export default page ;
Original file line number Diff line number Diff line change 1+ import { redirect } from 'next/navigation' ;
2+
3+ const page = ( ) => {
4+ redirect ( '/coming-soon' ) ;
5+ } ;
6+
7+ export default page ;
Original file line number Diff line number Diff line change 1+ import { redirect } from 'next/navigation' ;
2+
3+ const page = ( ) => {
4+ redirect ( '/coming-soon' ) ;
5+ } ;
6+
7+ export default page ;
Original file line number Diff line number Diff line change 1+ import { redirect } from 'next/navigation' ;
2+
3+ const page = ( ) => {
4+ redirect ( '/coming-soon' ) ;
5+ } ;
6+
7+ export default page ;
Original file line number Diff line number Diff line change 1+ import { redirect } from 'next/navigation' ;
2+
3+ const page = ( ) => {
4+ redirect ( '/coming-soon' ) ;
5+ } ;
6+
7+ export default page ;
You can’t perform that action at this time.
0 commit comments