Skip to content

Commit

Permalink
Update App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
erfan-esmkhan authored Dec 30, 2024
1 parent acdb638 commit d0ebf69
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import React from "react";
import { useVPNDetector } from "react-vpn-detector";
import "./app.css";
import { FaGithub } from "react-icons/fa6";
import { FaLinkedinIn } from "react-icons/fa";



const App = () => {
const { isUsingVPN, data, error } = useVPNDetector({
Expand Down Expand Up @@ -111,9 +115,15 @@ const App = () => {
</div>
</>
)}
</div>
</div>
<div className="author-container">
<span className="author">POWERED BY ERFAN-ESMKHANI</span>
<span class="developer icon1"><a className="hyperlink" href="https://github.com/erfan-esmkhan/"><FaGithub /></a></span>
<span class="developer icon2"><a className="hyperlink" href="https://linkedin.com/in/erfan-esmkhani-7669182a6"><FaLinkedinIn /></a></span>
</div>
</div>
</div>
);
};

export default App;

0 comments on commit d0ebf69

Please sign in to comment.