Skip to content

Commit

Permalink
fix: version and env + refactor file structure (#370)
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge authored Aug 29, 2022
1 parent e34e544 commit 3986b45
Show file tree
Hide file tree
Showing 45 changed files with 157 additions and 213 deletions.
95 changes: 39 additions & 56 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 1 addition & 13 deletions www/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,11 @@ import { defineConfig } from "astro/config";

import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import robotsTxt from "astro-robots-txt";

/**
* @link https://astro.build/config
*/
export default defineConfig({
site: `https://create.t3.gg`,
integrations: [
react(),
tailwind(),
robotsTxt({
transform(content) {
return `# Algolia-Crawler-Verif: 013A1A14AB9EE32B\n\n${content}`;
},
}),
],
experimental: {
integrations: true,
},
integrations: [react(), tailwind()],
});
10 changes: 4 additions & 6 deletions www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@
"@docsearch/css": "^3.2.1",
"@docsearch/react": "^3.2.1",
"@nanostores/react": "^0.3.0",
"astro-robots-txt": "^0.3.8",
"astro-seo": "^0.6.0",
"nanostores": "^0.6.0",
"react-typist": "^2.0.5"
"nanostores": "^0.6.0"
},
"devDependencies": {
"@astrojs/react": "^1.1.0",
Expand All @@ -27,9 +25,9 @@
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-typist": "^2.0.3",
"astro": "^1.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"astro": "^1.1.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-typist": "^2.0.5"
}
}
14 changes: 0 additions & 14 deletions www/public/assets/Logo.svg

This file was deleted.

Binary file modified www/public/default-og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified www/public/favicon.ico
Binary file not shown.
5 changes: 5 additions & 0 deletions www/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Algolia-Crawler-Verif: 013A1A14AB9EE32B

User-agent: *
Allow: /
Sitemap: https://create.t3.gg/sitemap-index.xml
56 changes: 0 additions & 56 deletions www/src/LandingPageComponents/Footer/footer.astro

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import type { Frontmatter } from "../../config";
import MoreMenu from "../rightSidebar/moreMenu.astro";
import TableOfContents from "../rightSidebar/tableOfContents";
import MoreMenu from "../navigation/moreMenu.astro";
import TableOfContents from "../navigation/tableOfContents";
import type { MarkdownHeading } from "astro";
export interface Props {
Expand Down
Loading

1 comment on commit 3986b45

@vercel
Copy link

@vercel vercel bot commented on 3986b45 Aug 29, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

create-t3-app – ./

create-t3-app-git-main-t3-oss.vercel.app
create-t3-app-t3-oss.vercel.app
create-t3-app-nu.vercel.app

Please sign in to comment.