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
54 changes: 52 additions & 2 deletions client/package-lock.json

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

3 changes: 3 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"preview": "vite preview"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"autoprefixer": "^10.4.19",
"axios": "^1.7.2",
"daisyui": "^4.12.2",
Expand Down
113 changes: 113 additions & 0 deletions client/src/assets/components/layout/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
import "@fortawesome/fontawesome-svg-core/styles.css";
import { config } from "@fortawesome/fontawesome-svg-core";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faArrowUp, faEnvelope } from "@fortawesome/free-solid-svg-icons";
config.autoAddCss = false;

export default function Footer() {
return (
<div className="bg-base-200 sm:p-1 w-full">
<div className="min-[400px] sm:min-h-[300px] sm:p-1 mt-2 p-2 flex flex-col sm:items-center sm:justify-center">
<div className="sm:flex sm:items-center sm:justify-center sm:space-y-2 font-sans sm:gap-[120px]">
<div className="sm:mt-9 mt-9">
<h1 className="italic text-[22px] text-base-content sm:text-[27px] font-sans font-[400] pl-1 sm:leading-[35px] leading-[28px]">
DevConnect <br />
a platform for developer <br /> community.
</h1>
</div>
<div className="sm:gap-[120px] mt-2 sm:mt-0 flex gap-[70px]">
<div className="sm:text-[18px]">
<a href="/">
<h2 className="mt-2 text-base-content">
Home{" "}
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 ml-6 text-base-content text-[15px]"
/>
</h2>
</a>
<a href="/">
<h2 className="mt-2 text-base-content">
Blog{" "}
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 ml-9 text-base-content text-[15px]"
/>
</h2>
</a>
<a href="/network">
<h2 className="mt-2 text-base-content">
Network{" "}
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 ml-2
text-base-content text-[15px]"
/>
</h2>
</a>
<a href="/">
<h2 className="mt-2 text-base-content">
Jobs{" "}
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 ml-9 text-base-content text-[15px]"
/>
</h2>
</a>
</div>

<div>
<h2 className="flex cursor-pointer items-center mt-2 space-x-4">
<a href="https://www.linkedin.com/" target="_blank" rel="noopener noreferrer">
<span className="sm:text-[18px] mr-8 text-base-content">Linkedin</span>
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 text-base-content text-[15px]"
/>
</a>
</h2>
<h2 className="flex cursor-pointer mt-2 items-center space-x-4">
<a href="https://github.com/" target="_blank" rel="noopener noreferrer">
<span className="sm:text-[18px] mr-12 text-base-content">Github</span>
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 text-base-content text-[15px]"
/>
</a>
</h2>
<h2 className="flex items-center mt-2 space-x-4">
<a href="https://www.instagram.com" target="_blank" rel="noopener noreferrer">
<span className="sm:text-[18px] mr-5 text-base-content">Instagram</span>
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 text-base-content text-[15px]"
/>
</a>
</h2>
<h2 className="flex flex-row items-center mt-2 space-x-4">
<a href="" target="_blank" rel="noopener noreferrer">
<span className="sm:text-[18px] mr-10 text-base-content">Discord</span>
<FontAwesomeIcon
icon={faArrowUp}
className="rotate-45 text-base-content sm:text-[15px]"
/>
</a>
</h2>
</div>
</div>
</div>
</div>
<div className="sm:h-[47px] h-[40px] mt-4 sm:mt-0 flex items-center justify-center w-full">
<div className="w-[94%] sm:text-[15px] text-[12px] h-full flex items-center justify-between sm:px-9 px-2 border-t-2 border-[#9d9d9d]">
<p className="hover:underline cursor-pointer">© 2025 Copyright by DevConnect</p>
<p>
<FontAwesomeIcon icon={faEnvelope} className="sm:text-xl text-sm mr-2" />
<a href="mailto:[email protected]" className="hover:underline">
Email
</a>
</p>
</div>
</div>
</div>
);
}
2 changes: 2 additions & 0 deletions client/src/assets/components/profile/Profile.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import About from './About/About';
import Project from './ProjectsSec/Project';
import Experiance from './Experience/Experience'
import Blog from './Blog/Blog';
import Footer from '../layout/Footer';

const Profile = () => {

Expand Down Expand Up @@ -103,6 +104,7 @@ const Profile = () => {
<Experiance/>
<Project/>
<Blog/>
<Footer/>
</div>

)
Expand Down