Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
NEXT_PUBLIC_SUPABASE_URL='https://fubfczsptfmjnwxntoid.supabase.co'
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImZ1YmZjenNwdGZtam53eG50b2lkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3Mjg1MDE0ODgsImV4cCI6MjA0NDA3NzQ4OH0.g9pEvpRH-sLAJDkJuqj64e3pSrsmBhrbF0CYSGxjrMYy
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME=duu0hcmib
NEXT_PUBLIC_CLOUDINARY_API_KEY=524166365459426
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel
Expand Down
12 changes: 12 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"framer-motion": "^11.11.1",
"gsap": "^3.12.5",
"mini-svg-data-uri": "^1.4.4",
Expand Down
17 changes: 17 additions & 0 deletions src/app/about-us/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';

const AboutUs: React.FC = () => {
return (
<div className="p-6">
<h1 className="text-3xl font-bold">About Us</h1>
<p className="mt-4 text-lg">
Welcome to TechZRevamp! We are passionate about bringing the latest in technology and innovation to our users.
</p>
<p className="mt-4 text-lg">
Our platform is dedicated to providing insightful discussions, news, and reviews on various tech-related topics.
</p>
</div>
);
};

export default AboutUs;
21 changes: 21 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import React from "react";
import Image from "next/image";

import Link from "next/link";

// Importing the SVG assets


import Logo from '@/app/assest/logo.svg';
import IconXing from '@/app/assest/xing.svg';
import IconInstagram from '@/app/assest/instagram.svg';
Expand Down Expand Up @@ -82,6 +88,21 @@ const Footer = () => {
</a>
</div>
</div>

{/* Quick Links Section */}

<div className="flex flex-col md:flex-row items-center space-y-2 md:space-y-0 md:space-x-8 mb-4 md:mb-0 justify-between w-full py-5 text-xl font-normal">
<a href="#" className="hover:text-[#39ff14]">Projects</a>
<a href="#" className="hover:text-[#39ff14]">Team Page</a>
<a href="#" className="hover:text-[#39ff14]">Event Page</a>
<a href="#" className="hover:text-[#39ff14]">RCCIIT website</a>
<a href="#" className="hover:text-[#39ff14]">RCCIIT Github Repos</a>
<Link href="/about-us" className="hover:text-[#39ff14]">About Us </Link>

</div>



</div>
</div>
</footer>
Expand Down