ranveersoni98 / gist:ba17226553074561acd7f55090682374
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | import { useEffect, useState } from 'react'; |
2 | import UserPage from '@/components/Global/User'; |
3 | import { NextSeo } from "next-seo"; |
4 | |
5 | export default function UserProfilePage({ url }) { |
6 | const [userData, setUserData] = useState(null); |
7 | const apiUrl = process.env.NEXT_PUBLIC_API_URL; |
8 | |
9 | useEffect(() => { |
10 | const fetchData = async () => { |
ranveersoni98 / manifest.json
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | { |
2 | "id": "1", |
3 | "display": "standalone", |
4 | "orientation": "portrait", |
5 | "theme_color": "#2c20f5", |
6 | "background_color": "2#c20f5", |
7 | "start_url": "/", |
8 | "name": "Topic Servers", |
9 | "short_name": "Topic", |
10 | "description": "Need more members? Not getting enough attention? Topic Servers is here for you.", |
ranveersoni98 / next.config.js
0 Kedvelések
0 forkok
1 fájlok
Utoljára aktív
1 | /** |
2 | * NEXT.JS CONFIGURATION FILE |
3 | * ========================== |
4 | */ |
5 | |
6 | /** @type {import('next').NextConfig} */ |
7 | const withPWA = require("@ducanh2912/next-pwa").default({ |
8 | register: true, |
9 | dest: "public", |
10 | reloadOnOnline: true, |
Újabb
Régebbi