diff --git a/.eslintrc.json b/.eslintrc.json index 72cc705..d59be9e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,12 @@ { - "extends": "next/core-web-vitals" + "extends": "next/core-web-vitals", + "rules": { + "@next/next/no-img-element": "off", + "import/no-anonymous-default-export": [ + "warn", + { + "allowObject": true + } + ] + } } diff --git a/.gitignore b/.gitignore index 19329db..bd8c54f 100644 --- a/.gitignore +++ b/.gitignore @@ -35,5 +35,8 @@ yarn-error.log* *.tsbuildinfo next-env.d.ts -# nova -.nova \ No newline at end of file +# nova +.nova + +# eslint +.eslintcache \ No newline at end of file diff --git a/.husky/.gitignore b/.husky/.gitignore new file mode 100644 index 0000000..31354ec --- /dev/null +++ b/.husky/.gitignore @@ -0,0 +1 @@ +_ diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..36af219 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx lint-staged diff --git a/app/about/page.tsx b/app/about/page.tsx index bb9cb8c..43325f0 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -1,5 +1,18 @@ import React from "react" +const communityDescription = ` + We're a community of developers of all skill levels, dedicated to fostering a fun and + educational environment. Hosted by Sam Holmes and a team of passionate organizers, our + monthly meetups offer an opportunity to network, learn, and showcase your projects. At + each event, you'll enjoy complimentary food and drinks during our networking lunch, + followed by a series of engaging presentations on various developer and engineering + topics. After the talks, we break into groups for casual networking, project showcases, + and coding help. Whether you're a seasoned developer or just starting out, there's + something for everyone. Be sure to bring your laptop if you'd like to share your latest + project or give a presentation. We look forward to meeting you and seeing what you're + excited about! +` + export default function About() { return (
@@ -13,19 +26,7 @@ export default function About() {

About us

-

- {" "} - We're a community of developers of all skill levels, dedicated to fostering a fun and - educational environment. Hosted by Sam Holmes and a team of passionate organizers, our - monthly meetups offer an opportunity to network, learn, and showcase your projects. At - each event, you'll enjoy complimentary food and drinks during our networking lunch, - followed by a series of engaging presentations on various developer and engineering - topics. After the talks, we break into groups for casual networking, project showcases, - and coding help. Whether you're a seasoned developer or just starting out, there's - something for everyone. Be sure to bring your laptop if you'd like to share your latest - project or give a presentation. We look forward to meeting you and seeing what you're - excited about! -

+

{communityDescription}

diff --git a/app/lib/components/Footer.tsx b/app/lib/components/Footer.tsx index 8ca159d..a925e89 100644 --- a/app/lib/components/Footer.tsx +++ b/app/lib/components/Footer.tsx @@ -2,7 +2,7 @@ const Footer = () => { return (