Skip to content

Commit c68129e

Browse files
authored
Merge pull request #83 from keepsimpleio/dev
Final optimization
2 parents fe4d528 + 86c8acd commit c68129e

71 files changed

Lines changed: 142 additions & 854 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
1.07 KB
Loading
63.4 KB
Loading
111 KB
Loading

report.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
● KeepSimpleOSS Codebase Audit Report
22

3-
1. Stack & Tooling
4-
3+
1. Stack & Tooling
54

65
┌──────────────────┬───────────────────────────────────────────────────────────────────────┬─────────────────┐
76
│ Category │ Detail │ Version │
@@ -214,7 +213,7 @@ src/pages/
214213
├── tools/longevity-protocol/... # /tools/longevity-protocol/\*
215214
└── api/auth/[...nextauth].ts # NextAuth API route
216215

217-
Data fetching: Most pages use getStaticProps with ISR (revalidate: 10). Some use getServerSideProps (contributors). Dynamic routes use getStaticPaths with fallback: 'blocking'.
216+
Data fetching: Most pages use getStaticProps with ISR (revalidate: 10). Dynamic routes use getStaticPaths with fallback: 'blocking'.
218217

219218
Layout pattern: Pages render a layout component that wraps content:
220219
const Index: FC<PageProps> = ({ landingData }) => (

src/assets/icons/AmazonLogo.tsx

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/assets/icons/BobIcon.tsx

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/assets/icons/BobIconWhite.tsx

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/assets/icons/articles/oxford.svg

Lines changed: 0 additions & 24 deletions
This file was deleted.
947 Bytes
Loading

src/assets/icons/longevity/Borders.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
const Borders = ({ className }) => (
1+
interface BordersProps {
2+
className?: string;
3+
}
4+
5+
const Borders = ({ className }: BordersProps) => (
26
<svg
37
className={className}
48
viewBox="0 0 321 42"

0 commit comments

Comments
 (0)