diff --git a/.env b/.env new file mode 100644 index 00000000..5adac7e3 --- /dev/null +++ b/.env @@ -0,0 +1 @@ +GRAPH_QL_URI='http://sumitdhiman.in:4000/graphql/' \ No newline at end of file diff --git a/package.json b/package.json index 3d381554..fec3b05d 100644 --- a/package.json +++ b/package.json @@ -77,5 +77,6 @@ "remark-toc": "^9.0.0", "tailwindcss": "^3.4.1", "typescript": "^5" - } + }, + "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" } diff --git a/public/assets/images/secondyear/Siya.webp b/public/assets/images/secondyear/siya.webp similarity index 100% rename from public/assets/images/secondyear/Siya.webp rename to public/assets/images/secondyear/siya.webp diff --git a/public/assets/images/thirdyear/abhimanyu.webp b/public/assets/images/thirdyear/Abhimanyu.webp similarity index 100% rename from public/assets/images/thirdyear/abhimanyu.webp rename to public/assets/images/thirdyear/Abhimanyu.webp diff --git a/public/assets/images/thirdyear/ankur.webp b/public/assets/images/thirdyear/Ankur.webp similarity index 100% rename from public/assets/images/thirdyear/ankur.webp rename to public/assets/images/thirdyear/Ankur.webp diff --git a/public/assets/images/thirdyear/Aditya1.webp b/public/assets/images/thirdyear/aditya1.webp similarity index 100% rename from public/assets/images/thirdyear/Aditya1.webp rename to public/assets/images/thirdyear/aditya1.webp diff --git a/public/assets/images/thirdyear/Ayushi.webp b/public/assets/images/thirdyear/ayushi.webp similarity index 100% rename from public/assets/images/thirdyear/Ayushi.webp rename to public/assets/images/thirdyear/ayushi.webp diff --git a/public/assets/images/thirdyear/Kunal.webp b/public/assets/images/thirdyear/kunal.webp similarity index 100% rename from public/assets/images/thirdyear/Kunal.webp rename to public/assets/images/thirdyear/kunal.webp diff --git a/public/assets/images/thirdyear/Lakshaya.webp b/public/assets/images/thirdyear/lakshaya.webp similarity index 100% rename from public/assets/images/thirdyear/Lakshaya.webp rename to public/assets/images/thirdyear/lakshaya.webp diff --git a/public/assets/images/thirdyear/Mehul.webp b/public/assets/images/thirdyear/mehul.webp similarity index 100% rename from public/assets/images/thirdyear/Mehul.webp rename to public/assets/images/thirdyear/mehul.webp diff --git a/public/assets/images/thirdyear/Tanashvi.webp b/public/assets/images/thirdyear/tanashvi.webp similarity index 100% rename from public/assets/images/thirdyear/Tanashvi.webp rename to public/assets/images/thirdyear/tanashvi.webp diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 3bb63e8b..658ff0e2 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -8,7 +8,7 @@ import Loader from '@/components/loader'; import { motion, useScroll } from "framer-motion"; const client = new ApolloClient({ - uri: 'http://localhost:4000/graphql/', + uri: process.env.GRAPH_QL_URI || 'http://sumitdhiman.in:4000/graphql/', cache: new InMemoryCache(), }); diff --git a/src/app/home/contact.tsx b/src/app/home/contact.tsx index 7a5663ec..52b84fd4 100644 --- a/src/app/home/contact.tsx +++ b/src/app/home/contact.tsx @@ -30,14 +30,16 @@ export default function contact (){

Address

-

NIT, Hamirpur
Himachal Pradesh,
India, 177005

+

NIT Hamirpur
Himachal Pradesh,
India, 177005

Phone

-

12345578

+

+ +91 8580788014 +

diff --git a/src/app/members/page.jsx b/src/app/members/page.jsx index c0cc350c..1564d5f6 100644 --- a/src/app/members/page.jsx +++ b/src/app/members/page.jsx @@ -11,7 +11,7 @@ import Footer from '../../components/footer'; import Loader from "../../components/loader"; // Import the loader component import SkeletonLoader from "../../components/skeltonloader"; const client = new ApolloClient({ - uri: 'http://localhost:4000/graphql/', + uri: process.env.GRAPH_QL_URI || 'http://sumitdhiman.in:4000/graphql/', cache: new InMemoryCache(), });