-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Release new landing #953
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
Merged
Merged
Release new landing #953
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d0a7f1e
move old landing
elie222 d9f532a
release new landing
elie222 178e06b
fix warning
elie222 decb786
add links
elie222 3fa9d60
fix links
elie222 b3e24c5
put back sales button
elie222 d19d467
rename component
elie222 fec42a0
larger video
elie222 3671f4d
centralized analytics
elie222 b978eb4
larger button
elie222 06382bd
font geist
elie222 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| import type { Metadata } from "next"; | ||
| import { HeroHome } from "@/app/(landing)/home/Hero"; | ||
| import { BasicLayout } from "@/components/layouts/BasicLayout"; | ||
| import { FeaturesHome } from "@/app/(landing)/home/Features"; | ||
| import { Privacy } from "@/app/(landing)/home/Privacy"; | ||
| import { Testimonials } from "@/app/(landing)/home/Testimonials"; | ||
| import { PricingLazy } from "@/app/(app)/premium/PricingLazy"; | ||
| import { FAQs } from "@/app/(landing)/home/FAQs"; | ||
| import { CTA } from "@/app/(landing)/home/CTA"; | ||
|
|
||
| export const metadata: Metadata = { alternates: { canonical: "/" } }; | ||
|
|
||
| export default function Home() { | ||
| return ( | ||
| <BasicLayout> | ||
| <HeroHome /> | ||
| <FeaturesHome /> | ||
| <Testimonials /> | ||
| <PricingLazy className="pb-32" /> | ||
| <Privacy /> | ||
| <FAQs /> | ||
| <CTA /> | ||
| </BasicLayout> | ||
| ); | ||
| } |
This file contains hidden or 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,25 +1,33 @@ | ||
| import type { Metadata } from "next"; | ||
| import { HeroHome } from "@/app/(landing)/home/Hero"; | ||
| import { BasicLayout } from "@/components/layouts/BasicLayout"; | ||
| import { FeaturesHome } from "@/app/(landing)/home/Features"; | ||
| import { Privacy } from "@/app/(landing)/home/Privacy"; | ||
| import { Testimonials } from "@/app/(landing)/home/Testimonials"; | ||
| import { PricingLazy } from "@/app/(app)/premium/PricingLazy"; | ||
| import { FAQs } from "@/app/(landing)/home/FAQs"; | ||
| import { CTA } from "@/app/(landing)/home/CTA"; | ||
| import { BasicLayout } from "@/components/new-landing/common/BasicLayout"; | ||
| import { FAQs } from "@/components/new-landing/sections/FAQs"; | ||
| import { Testimonials } from "@/components/new-landing/sections/Testimonials"; | ||
| import { Hero } from "@/components/new-landing/sections/Hero"; | ||
| import { Pricing } from "@/components/new-landing/sections/Pricing"; | ||
| import { Awards } from "@/components/new-landing/sections/Awards"; | ||
| import { FinalCTA } from "@/components/new-landing/sections/FinalCTA"; | ||
| import { EverythingElseSection } from "@/components/new-landing/sections/EverythingElseSection"; | ||
| import { StartedInMinutes } from "@/components/new-landing/sections/StartedInMinutes"; | ||
| import { BulkUnsubscribe } from "@/components/new-landing/sections/BulkUnsubscribe"; | ||
| import { OrganizedInbox } from "@/components/new-landing/sections/OrganizedInbox"; | ||
| import { PreWrittenDrafts } from "@/components/new-landing/sections/PreWrittenDrafts"; | ||
|
|
||
| export const metadata: Metadata = { alternates: { canonical: "/" } }; | ||
|
|
||
| export default function Home() { | ||
| export default function NewLanding() { | ||
| return ( | ||
| <BasicLayout> | ||
| <HeroHome /> | ||
| <FeaturesHome /> | ||
| <Hero /> | ||
| <OrganizedInbox /> | ||
| <PreWrittenDrafts /> | ||
| <StartedInMinutes /> | ||
| <BulkUnsubscribe /> | ||
| <EverythingElseSection /> | ||
| <Awards /> | ||
| <Pricing /> | ||
| <Testimonials /> | ||
| <PricingLazy className="pb-32" /> | ||
| <Privacy /> | ||
| <FinalCTA /> | ||
| <FAQs /> | ||
| <CTA /> | ||
| </BasicLayout> | ||
| ); | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
Add rel="noopener noreferrer" when opening the sales link in a new tab to prevent reverse tabnabbing.
Prompt for AI agents