generated from NEARBuilders/project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97575af
commit 93fb718
Showing
20 changed files
with
401 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
import js from '@eslint/js'; | ||
import globals from 'globals'; | ||
import reactHooks from 'eslint-plugin-react-hooks'; | ||
import reactRefresh from 'eslint-plugin-react-refresh'; | ||
import tseslint from 'typescript-eslint'; | ||
import js from "@eslint/js"; | ||
import globals from "globals"; | ||
import reactHooks from "eslint-plugin-react-hooks"; | ||
import reactRefresh from "eslint-plugin-react-refresh"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
export default tseslint.config( | ||
{ ignores: ['dist'] }, | ||
{ ignores: ["dist"] }, | ||
{ | ||
extends: [js.configs.recommended, ...tseslint.configs.recommended], | ||
files: ['**/*.{ts,tsx}'], | ||
files: ["**/*.{ts,tsx}"], | ||
languageOptions: { | ||
ecmaVersion: 2020, | ||
globals: globals.browser, | ||
}, | ||
plugins: { | ||
'react-hooks': reactHooks, | ||
'react-refresh': reactRefresh, | ||
"react-hooks": reactHooks, | ||
"react-refresh": reactRefresh, | ||
}, | ||
rules: { | ||
...reactHooks.configs.recommended.rules, | ||
'react-refresh/only-export-components': [ | ||
'warn', | ||
"react-refresh/only-export-components": [ | ||
"warn", | ||
{ allowConstantExport: true }, | ||
], | ||
}, | ||
} | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { Github } from 'lucide-react'; | ||
import { Link } from 'react-router-dom'; | ||
import { Github } from "lucide-react"; | ||
import { Link } from "react-router-dom"; | ||
|
||
export default function Footer() { | ||
const currentYear = new Date().getFullYear(); | ||
|
@@ -25,15 +25,23 @@ export default function Footer() { | |
</div> | ||
|
||
<div> | ||
<h3 className="text-lg font-semibold text-white mb-4">Quick Links</h3> | ||
<h3 className="text-lg font-semibold text-white mb-4"> | ||
Quick Links | ||
</h3> | ||
<ul className="space-y-2"> | ||
<li> | ||
<Link to="/submit" className="text-gray-400 hover:text-white transition-colors"> | ||
<Link | ||
to="/submit" | ||
className="text-gray-400 hover:text-white transition-colors" | ||
> | ||
Submit Project | ||
</Link> | ||
</li> | ||
<li> | ||
<Link to="/process" className="text-gray-400 hover:text-white transition-colors"> | ||
<Link | ||
to="/process" | ||
className="text-gray-400 hover:text-white transition-colors" | ||
> | ||
Our Process | ||
</Link> | ||
</li> | ||
|
@@ -60,12 +68,18 @@ export default function Footer() { | |
<h3 className="text-lg font-semibold text-white mb-4">Contact</h3> | ||
<ul className="space-y-2"> | ||
<li> | ||
<a href="mailto:[email protected]" className="text-gray-400 hover:text-white transition-colors"> | ||
[email protected] | ||
<a | ||
href="mailto:[email protected]" | ||
className="text-gray-400 hover:text-white transition-colors" | ||
> | ||
[email protected] | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://nearbuilders.com/tg-builders" className="text-gray-400 hover:text-white transition-colors"> | ||
<a | ||
href="https://nearbuilders.com/tg-builders" | ||
className="text-gray-400 hover:text-white transition-colors" | ||
> | ||
Telegram Community | ||
</a> | ||
</li> | ||
|
@@ -78,15 +92,21 @@ export default function Footer() { | |
© {currentYear} Build DAO. All rights reserved. | ||
</p> | ||
<div className="flex gap-6 mt-4 md:mt-0"> | ||
<a href="#" className="text-gray-400 hover:text-white text-sm transition-colors"> | ||
<a | ||
href="#" | ||
className="text-gray-400 hover:text-white text-sm transition-colors" | ||
> | ||
Privacy Policy | ||
</a> | ||
<a href="#" className="text-gray-400 hover:text-white text-sm transition-colors"> | ||
<a | ||
href="#" | ||
className="text-gray-400 hover:text-white text-sm transition-colors" | ||
> | ||
Terms of Service | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.