Skip to content

Commit d6a4aef

Browse files
adding member pageNew (#110)
* manading form_create from falling down and allowing user to create table if their no entries for them in users table * little debugging * debug * adding home page * adding update password * debugging * correcting login page * debugged login page * correcting sinup page * Delete .github/workflows directory * correcting signup page - 3 * correcting signup page 4 * Delete .github/workflows directory 2 * correcting sinup page 5 * members page * adding member page --------- Co-authored-by: Devyash Saini <[email protected]>
1 parent e436f9a commit d6a4aef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1953
-630
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,12 @@ yarn-error.log*
3232

3333
# vercel
3434
.vercel
35+
36+
# admin and users
37+
/src/app/users
38+
/src/app/admin
39+
40+
# robots.txt
41+
/robots.txt
42+
/sitemap.xml
43+
/sitemap-[0-9]*.xml

next-sitemap.config.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
siteUrl: "https://iiitvcc.vercel.app",
3+
generateRobotsTxt: true,
4+
};

next.config.mjs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
images: {
4+
domains: ["aceternity.com"],
5+
},
6+
};
37

48
export default nextConfig;

package-lock.json

+105-35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
8+
"postbuild": "next-sitemap --config next-sitemap.config.js",
89
"start": "next start",
10+
"export": "next build && next export",
911
"lint": "next lint",
1012
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\""
1113
},
@@ -20,18 +22,21 @@
2022
"@radix-ui/react-icons": "^1.3.0",
2123
"@radix-ui/react-label": "^2.1.0",
2224
"@radix-ui/react-slot": "^1.1.0",
25+
"@radix-ui/react-switch": "^1.1.0",
2326
"@reduxjs/toolkit": "^2.2.6",
2427
"@supabase/ssr": "^0.4.0",
2528
"@vercel/analytics": "^1.3.1",
2629
"@vercel/speed-insights": "^1.0.12",
2730
"axios": "^1.7.2",
2831
"class-variance-authority": "^0.7.0",
2932
"clsx": "^2.1.1",
33+
"framer-motion": "^11.3.29",
3034
"jodit-react": "^4.1.2",
3135
"ldrs": "^1.0.2",
3236
"lucide-react": "^0.408.0",
3337
"next": "14.2.5",
3438
"next-client-cookies": "^1.1.1",
39+
"next-sitemap": "^4.2.3",
3540
"react": "^18",
3641
"react-dom": "^18",
3742
"react-icons": "^5.2.1",

public/members/placeholder.jpeg

5.38 KB
Loading

public/sitemap.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<sitemap><loc>https://iiitvcc.vercel.app/sitemap-0.xml</loc></sitemap>
4+
</sitemapindex>

0 commit comments

Comments
 (0)