Skip to content

Commit 85c0e2c

Browse files
added about to regex, cleaned up about page
1 parent 71fb97f commit 85c0e2c

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ export function middleware(request: NextRequest) {
2222
return NextResponse.next();
2323
}
2424

25-
export const config = { matcher: ["/((?!img|_next|api|signInPage).*)"] };
25+
export const config = { matcher: ["/((?!img|_next|api|signInPage|about).*)"] };

src/pages/about.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
import Image from "next/image";
2-
import $typo from "@/styles/Typography.module.css";
3-
41
const About = () => {
52
return (
6-
<>
3+
<div>
74
<h2>About Compass</h2>
85

96
<div>
107
Compass is a civic app we are building for the San Francisco Unified
118
School District. The app seeks to assist Teachers with setting and
129
tracking goals for students with disabilities.
1310
</div>
14-
<div></div>
15-
</>
11+
</div>
1612
);
1713
};
1814

0 commit comments

Comments
 (0)