Skip to content

Commit

Permalink
renames
Browse files Browse the repository at this point in the history
  • Loading branch information
richardgill committed Apr 1, 2024
1 parent 5036f17 commit 1df6c4f
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { cn, formatDate } from "@/lib/utils";
import { Icon } from "astro-icon/components";
import { Image } from "astro:assets";
import type { CollectionEntry } from "astro:content";
import MainLayout from "./main-layout.astro";
import MainLayout from "./MainLayout.astro";
type Props = CollectionEntry<"blog">;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getTableOfContents } from "@/lib/tableOfContents";
import { cn, formatDate } from "@/lib/utils";
import { Icon } from "astro-icon/components";
import type { CollectionEntry } from "astro:content";
import MainLayout from "./main-layout.astro";
import MainLayout from "./MainLayout.astro";
type Props = CollectionEntry<"guides">;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Footer from "@/components/layout/Footer.astro";
import Header from "@/components/layout/Header.astro";
import { cn } from "@/lib/utils";
import BaseLayout from "./base-layout.astro";
import BaseLayout from "./BaseLayout.astro";
import { SheetMobileNav } from "@/components/layout/SheetMobileNav";
import { ThemeToggle } from "@/components/ThemeToggle";
import { siteConfig } from "@/config/site";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/blog/[...slug].astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import BlogPostLayout from "@/layouts/blog-post.astro";
import BlogPostLayout from "@/layouts/BlogPost.astro";
import { getCollection, type CollectionEntry } from "astro:content";
export async function getStaticPaths() {
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/blog/category/[category].astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import BlogHeader from "@/components/BlogHeader.astro";
import BlogCard from "@/components/cards/BlogCard.astro";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { capitalizer } from "@/lib/utils";
import { getCollection } from "astro:content";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/blog/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import BlogHeader from "@/components/BlogHeader.astro";
import BlogCard from "@/components/cards/BlogCard.astro";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { getPosts } from "@/lib/fetchers";
const posts = await getPosts();
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/changelog/[slug].astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { getCollection } from "astro:content";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { cn, formatDate } from "@/lib/utils";
import { Badge } from "@/components/ui/Badge";
import { buttonVariants } from "@/components/ui/Button";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/changelog/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import PageHeader from "@/components/PageHeader.astro";
import { Badge } from "@/components/ui/Badge";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { formatDate } from "@/lib/utils";
import { getCollection } from "astro:content";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/docs/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import DocsPager from "@/components/Pager.astro";
import { DashboardTableOfContents } from "@/components/TableOfContents";
import { ScrollArea } from "@/components/ui/ScrollArea";
import { docsConfig } from "@/config/docs";
import MainLayout from "../../layouts/main-layout.astro";
import MainLayout from "../../layouts/MainLayout.astro";
import { getTableOfContents } from "@/lib/tableOfContents";
import { Icon } from "astro-icon/components";
import { getCollection, type CollectionEntry } from "astro:content";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/guides/[...slug].astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
import { MdxComponents } from "@/components/content/MdxComponents";
import GuidePostLayout from "@/layouts/guide-post.astro";
import GuidePostLayout from "@/layouts/GuidePost.astro";
import { getCollection, type CollectionEntry } from "astro:content";
export async function getStaticPaths() {
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/guides/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import GuideCard from "@/components/cards/GuideCard.astro";
import DocsPageHeader from "@/components/PageHeader.astro";
import MainLayout from "../../layouts/main-layout.astro";
import MainLayout from "../../layouts/MainLayout.astro";
import { getGuides } from "@/lib/fetchers";
const guides = await getGuides();
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { buttonVariants } from "@/components/ui/Button";
import { siteConfig } from "@/config/site";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { cn } from "@/lib/utils";
import { Icon } from "astro-icon/components";
---
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/newsletter.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const prerender = false;
import { Button } from "@/components/ui/Button";
import { Input } from "@/components/ui/Input";
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { cn } from "@/lib/utils";
import { Icon } from "astro-icon/components";
import { WaitingList, db, sql } from "astro:db";
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/pages/waitlist.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import MainLayout from "@/layouts/main-layout.astro";
import MainLayout from "@/layouts/MainLayout.astro";
import { WaitlistForm } from "@/components/forms/WaitlistForm";
import { Icon } from "astro-icon/components";
---
Expand Down

0 comments on commit 1df6c4f

Please sign in to comment.