-
Notifications
You must be signed in to change notification settings - Fork 38
Marketing audit: hero rewrite, outcome-driven feature messaging, and guides/landing integration #1924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Marketing audit: hero rewrite, outcome-driven feature messaging, and guides/landing integration #1924
Changes from 3 commits
5a8b0c3
4c2d15c
a609377
2b49853
6cb8712
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -33,6 +33,10 @@ export const navigationConfig = { | |||||
| title: 'Safety', | ||||||
| href: '/?category=safety', | ||||||
| }, | ||||||
| { | ||||||
| title: '← packratai.com', | ||||||
| href: 'https://packratai.com', | ||||||
| }, | ||||||
| ], | ||||||
| // Maximum number of categories to show in header | ||||||
| maxCategories: 4, | ||||||
|
|
@@ -81,9 +85,10 @@ export const footerConfig = { | |||||
| { | ||||||
| title: 'Company', | ||||||
| links: [ | ||||||
| { title: 'About Us', href: '#' }, | ||||||
| { title: 'Contact', href: '#' }, | ||||||
| { title: 'Privacy Policy', href: '#' }, | ||||||
| { title: 'About Us', href: 'https://packratai.com/about' }, | ||||||
| { title: 'Download App', href: 'https://packratai.com/#download' }, | ||||||
| { title: 'Contact', href: 'mailto:hello@packratai.com' }, | ||||||
| { title: 'Privacy Policy', href: 'https://packratai.com/privacy-policy' }, | ||||||
| { title: 'Terms of Service', href: '#' }, | ||||||
|
||||||
| { title: 'Terms of Service', href: '#' }, | |
| { title: 'Terms of Service', href: 'https://packratai.com/terms-of-service' }, |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,22 +40,39 @@ export default function AboutPage() { | |
| <h1 className="text-4xl font-extrabold tracking-tight md:text-5xl">About PackRat</h1> | ||
| <p className="text-xl text-muted-foreground max-w-2xl mx-auto"> | ||
| We're a team of outdoor enthusiasts on a mission to make every adventure safer, | ||
| more organized, and more enjoyable. | ||
| more organized, and more enjoyable — completely free. | ||
| </p> | ||
| </div> | ||
|
|
||
| {/* Mission */} | ||
| {/* Origin Story */} | ||
| <section className="space-y-4"> | ||
| <h2 className="text-2xl font-semibold tracking-tight">Our Mission</h2> | ||
| <h2 className="text-2xl font-semibold tracking-tight">Where It Started</h2> | ||
| <p className="text-muted-foreground leading-relaxed"> | ||
| PackRat was born out of a familiar frustration: standing at the trailhead realising | ||
| you've forgotten your rain jacket, your headlamp, or (worse) your water filter. | ||
| After one too many trips cut short or made miserable by missing gear, our founder set | ||
| out to build the app they always wished existed. | ||
| </p> | ||
| <p className="text-muted-foreground leading-relaxed"> | ||
| The vision was simple — an intelligent packing assistant that knows your trip, the | ||
| forecast, and your gear, and builds a personalised list so you carry exactly what you | ||
| need and nothing you don't. No more overpacking. No more forgetting essentials. | ||
|
Comment on lines
+50
to
+59
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep the origin-story copy in American English. Lines 51 and 58 use 🤖 Prompt for AI Agents |
||
| </p> | ||
| <p className="text-muted-foreground leading-relaxed"> | ||
| PackRat was born out of a simple frustration: forgetting essential gear on a camping | ||
| trip. We built the app we always wished we had — one that intelligently helps you plan, | ||
| pack, and navigate your outdoor adventures with confidence. | ||
| What started as a side project quickly grew into something the outdoor community truly | ||
| needed. Today, PackRat is used by thousands of hikers, backpackers, trail runners, and | ||
| weekend campers across the globe — and it's completely free. | ||
| </p> | ||
| </section> | ||
|
|
||
| {/* Mission */} | ||
| <section className="space-y-4"> | ||
| <h2 className="text-2xl font-semibold tracking-tight">Our Mission</h2> | ||
| <p className="text-muted-foreground leading-relaxed"> | ||
| Today, PackRat is used by thousands of hikers, backpackers, trail runners, and weekend | ||
| campers across the globe. Whether you're heading out for an afternoon day hike or a | ||
| week-long backcountry expedition, PackRat has you covered. | ||
| Our mission is straightforward: help more people get outside with confidence. Whether | ||
| you're heading out for an afternoon day hike or a week-long backcountry expedition, | ||
| PackRat has you covered. We believe the barrier to outdoor adventure should be as low as | ||
| possible — which is why PackRat is, and always will be, free to use. | ||
| </p> | ||
| </section> | ||
|
|
||
|
|
@@ -106,7 +123,7 @@ export default function AboutPage() { | |
| <p className="text-muted-foreground">Ready to hit the trails?</p> | ||
| <div className="flex flex-col sm:flex-row gap-4 justify-center"> | ||
| <Button asChild size="lg"> | ||
| <Link href="/#download">Download PackRat</Link> | ||
| <Link href="/#download">Download Free</Link> | ||
| </Button> | ||
| <Button asChild variant="outline" size="lg"> | ||
| <Link href="mailto:hello@packratai.com">Contact Us</Link> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep this CTA copy in American English.
Line 118 uses
personalised, which reintroduces British spelling into the marketing copy.personalizedwould match the rest of this PR.🤖 Prompt for AI Agents