Skip to content

Commit

Permalink
update cascade
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ivashchuk committed Apr 8, 2024
1 parent 16dd7d0 commit 58eb23c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/app/(blog)/blog/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { env } from "~/env.mjs";
import { buttonVariants } from "~/components/ui/button";
import { absoluteUrl, cn, formatDate } from "~/lib/utils";
import { ChevronLeft } from "lucide-react";
import { Mdx } from "~/components/patterns/mdx";

import MdxContent from "./mdx-content";
import Newsletter from "./newsletter";

Expand Down
34 changes: 26 additions & 8 deletions src/app/(landing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,9 @@ export default function Home() {
<h2 className="mb-4 text-center text-3xl">
What is covered in template
</h2>
<h3 className="mb-4 text-center text-2xl">
<b>Technical</b>
</h3>
<ul className="list-disc">
<li>
Basic T3 stack setup with Next.js, Prisma, PostgreSQL, TailwindCSS.
Expand All @@ -222,18 +225,10 @@ export default function Home() {
Background jobs with Trigger.dev |{" "}
<b>Slack notifications on new Users, background job processing</b>
</li>
<li>
Email user flows with Loops |{" "}
<b>Welcome emails for newly signed up</b>
</li>
<li>
Error handling with Sentry |{" "}
<b>Monitoring, Alerts, Issue tracking</b>
</li>
<li>
Analytics with Posthog |{" "}
<b>Event tracking, User behavior analysis</b>
</li>
<li>
Storybook | <b>Component library, Documentation</b>
</li>
Expand All @@ -244,6 +239,29 @@ export default function Home() {
Lost Pixel | <b>Visual regression testing</b>
</li>
</ul>
<h3 className="mb-4 mt-8 text-center text-2xl">
<b>Business</b>
</h3>
<ul className="list-disc">
<li>Simple markdown blog with Contentlayer </li>
<li>
SEO with Next.js |{" "}
<b>Dynamic Sitemap,Dynamic Open Graph, Twitter Cards</b>
</li>
<li>
Email user flows with Loops |{" "}
<b>
Welcome emails for newly signed up users, newsletter subscription
</b>
</li>
<li>
Analytics with Posthog |{" "}
<b>Event tracking, User behavior analysis</b>
</li>
<li>
Analytics with Plausible | <b>Page analytics</b>
</li>
</ul>
</div>
</div>
);
Expand Down

0 comments on commit 58eb23c

Please sign in to comment.