Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .astro/content.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,14 @@ declare module 'astro:content' {
rendered?: RenderedContent;
filePath?: string;
}>;
"research": Record<string, {
id: string;
body?: string;
collection: "research";
data: InferEntrySchema<"research">;
rendered?: RenderedContent;
filePath?: string;
}>;

};

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ astro boilerplate
- Removed unnecessary classes
- improve page performance in light and dark mode

## [1.4.1] - 2026-06-28

- Added Research page

### [Unreleased]

Here we write upgrading notes for brands. It's a team effort to make them as straightforward as possible.
4 changes: 0 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import mdx from "@astrojs/mdx";
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import { defineConfig, passthroughImageService } from "astro/config";

Expand All @@ -15,9 +14,6 @@ export default defineConfig({
},
integrations: [
mdx(),
react({
experimentalReactChildren: true
}),
tailwind({
applyBaseStyles: false,
nesting: true
Expand Down
18 changes: 6 additions & 12 deletions domain.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
"javascript": "javascriptreact"
},
"eslint.options": {
"extensions": [ ".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro" ]
"extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro"]
},
"eslint.validate": [ "mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro" ],
"eslint.validate": ["mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro"],
"explorer.compactFolders": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
Expand Down Expand Up @@ -111,7 +111,7 @@
},
"git.autofetch": true,
"git.branchPrefix": "feature/",
"git.branchProtection": [ "develop", "main" ],
"git.branchProtection": ["develop", "main"],
"git.branchRandomName.enable": true,
"git.confirmSync": false,
"git.enableCommitSigning": false,
Expand All @@ -122,7 +122,7 @@
"js/ts.implicitProjectConfig.checkJs": true,
"peacock.affectSideBarBorder": true,
"peacock.color": "#010010",
"prettier.documentSelectors": [ "**/*.astro" ],
"prettier.documentSelectors": ["**/*.astro"],
"prettier.printWidth": 120,
"prettier.quoteProps": "consistent",
"prettier.singleQuote": false,
Expand All @@ -148,13 +148,7 @@
"*.log": "default"
},
"zenMode.centerLayout": false,
"cSpell.words": [
"Boisu",
"brandvault",
"Poorna",
"Socie",
"withastro"
],
"cSpell.words": ["Boisu", "brandvault", "Poorna", "Socie", "withastro"],
"workbench.editor.limit.excludeDirty": true,
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#040043",
Expand All @@ -177,6 +171,6 @@
"titleBar.inactiveForeground": "#e7e7e799",
"tab.activeBorder": "#040043"
},
"folder-color.pathColors": [ ]
"folder-color.pathColors": []
}
}
Loading
Loading