diff --git a/src/routes/pt-br/index.mdx b/src/routes/pt-br/index.mdx
deleted file mode 100644
index b8f18df57..000000000
--- a/src/routes/pt-br/index.mdx
+++ /dev/null
@@ -1,88 +0,0 @@
----
-title: Sumário
-mainNavExclude: true
-use_cases: >-
- getting started, learning solid, understanding framework, first project,
- introduction
-tags:
- - introduction
- - overview
- - getting-started
- - basics
- - framework
-version: '1.0'
-description: >-
- Solid is a reactive JavaScript framework for building fast, efficient UIs.
- Learn about fine-grained reactivity and modern web development.
----
-
-# Sumário
-
-Solid is a modern JavaScript framework designed to build responsive and high-performing user interfaces (UI).
-It prioritizes a simple and predictable development experience, making it a great choice for developers of all skill levels.
-
-## What is Solid?
-
-As a JavaScript framework, Solid embraces reactivity and fine-grained updates.
-
-Reactivity, in programming, refers to an applications' ability to respond to changes in data or user interactions.
-
-Traditionally, when a change occurs, the entire web page would need to reload to display the updated information.
-In contrast, when using a fine-grained reactive system, updates are only applied to the parts of the page that need to be updated.
-
-Solid adopts the concept of fine-grained reactivity, updating only when the data the application depends on changes.
-This decreases work and can result in faster load times and a smoother user experience overall.
-
-## Advantages of using Solid
-
-- **Performant**: Fine-grained reactivity allows Solid to update only what has changed, resulting in faster load times and smoother performance overall.
-
-- **Powerful**: Using less memory and processing power, Solid is capable of creating complex applications without compromising on functionality.
- This also gives developers the flexibility over how and when updates happen.
-
-- **Pragmatic**: Rather than sticking to rigid structures or methods, Solid provides the freedom to choose the strategies and practices that work best for you.
-
-- **Productive**: Regardless of experience level, Solid's clear and predictable API makes developers' work simpler and more efficient.
-
-Solid aims to strike a balance between speed, efficiency, power, and flexibility, all while providing a developer-friendly environment.
-This combination of features makes it a great choice to build responsive and high-performing UIs.
-
-## Quick links
-
-
-
- Learn the basics of Solid through this interactive tutorial.
-
-
- Start your first project with a template that fits your needs.
-
-
- Explore the Solid ecosystem and find useful tools and libraries.
-
-
- Help improve Solid by contributing to the documentation.
-
-
-
-_Find our API documentation under the **Reference** tab_
-
-Join the [Solid community on Discord](https://discord.com/invite/solidjs) to share your projects or get help from our community!
-
-
-
diff --git a/src/routes/pt-br/quick-start.mdx b/src/routes/pt-br/quick-start.mdx
deleted file mode 100644
index 2ea5251b7..000000000
--- a/src/routes/pt-br/quick-start.mdx
+++ /dev/null
@@ -1,95 +0,0 @@
----
-title: Começo rápido
-use_cases: >-
- starting new project, project setup, first app, development environment,
- templates
-tags:
- - quickstart
- - setup
- - templates
- - getting-started
- - playground
-version: '1.0'
-description: >-
- Start building with Solid quickly. Try the playground, create projects with
- templates, and get your first Solid app running in minutes.
----
-
-## Solid playgrounds
-
-Experimente Solid in your browser by visiting our [interactive playground](https://playground.solidjs.com/).
-
-Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [TypeScript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
-
-## Creating a Solid application
-
-:::note[Prerequisites]
-
- - Familiarity with the command line
- - Install [Node.js](https://nodejs.org/en)
-
-:::
-
-Solid offers convenient project templates that can help kickstart your development.
-To get an application running, follow the steps below based on the language you prefer to use.
-
-### For JavaScript projects
-
-1. Run the following command in your terminal to get the JavaScript starter template:
-
-```bash frame="none"
-npx degit solidjs/templates/js my-app
-```
-
-2. Navigate to your application's directory:
-
-```bash frame="none"
-cd my-app
-```
-
-3. Install the necessary dependencies:
-
-```package-install-local
-```
-
-4. Run the application:
-
-```bash frame="none"
-npm run dev
-```
-
-This will start the development server.
-Now, you can open your browser and navigate to `localhost:3000` to see your application running.
-
-### For TypeScript projects
-
-1. To use a TypeScript template, run the following command in your terminal:
-
-```bash frame="none"
-npx degit solidjs/templates/ts my-app
-```
-
-2. Navigate to your application's directory:
-
-```bash frame="none"
-cd my-app
-```
-
-3. Install the necessary dependencies:
-
-```package-install-local
-```
-
-4. Run the application:
-
-```bash frame="none"
-npm run dev
-```
-
-This will start the development server.
-Now, you can open your browser and navigate to `localhost:3000` to see your application running.
-
-### Explore more templates
-
-Solid offers a variety of Vite templates to streamline your development process.
-These resources are available on [GitHub](https://github.com/solidjs/templates).
diff --git a/src/routes/pt-br/solid-router/index.mdx b/src/routes/pt-br/solid-router/index.mdx
deleted file mode 100644
index b87c1bba6..000000000
--- a/src/routes/pt-br/solid-router/index.mdx
+++ /dev/null
@@ -1,88 +0,0 @@
----
-title: Sumário
-mainNavExclude: true
-use_cases: >-
- getting started, learning solid, understanding framework, first project,
- introduction
-tags:
- - introduction
- - overview
- - getting-started
- - basics
- - framework
-version: '1.0'
-description: >-
- Solid is a reactive JavaScript framework for building fast, efficient UIs.
- Learn about fine-grained reactivity and modern web development.
----
-
-# Roteador
-
-Solid is a modern JavaScript framework designed to build responsive and high-performing user interfaces (UI).
-It prioritizes a simple and predictable development experience, making it a great choice for developers of all skill levels.
-
-## What is Solid?
-
-As a JavaScript framework, Solid embraces reactivity and fine-grained updates.
-
-Reactivity, in programming, refers to an applications' ability to respond to changes in data or user interactions.
-
-Traditionally, when a change occurs, the entire web page would need to reload to display the updated information.
-In contrast, when using a fine-grained reactive system, updates are only applied to the parts of the page that need to be updated.
-
-Solid adopts the concept of fine-grained reactivity, updating only when the data the application depends on changes.
-This decreases work and can result in faster load times and a smoother user experience overall.
-
-## Advantages of using Solid
-
-- **Performant**: Fine-grained reactivity allows Solid to update only what has changed, resulting in faster load times and smoother performance overall.
-
-- **Powerful**: Using less memory and processing power, Solid is capable of creating complex applications without compromising on functionality.
- This also gives developers the flexibility over how and when updates happen.
-
-- **Pragmatic**: Rather than sticking to rigid structures or methods, Solid provides the freedom to choose the strategies and practices that work best for you.
-
-- **Productive**: Regardless of experience level, Solid's clear and predictable API makes developers' work simpler and more efficient.
-
-Solid aims to strike a balance between speed, efficiency, power, and flexibility, all while providing a developer-friendly environment.
-This combination of features makes it a great choice to build responsive and high-performing UIs.
-
-## Quick links
-
-
-
- Learn the basics of Solid through this interactive tutorial.
-
-
- Start your first project with a template that fits your needs.
-
-
- Explore the Solid ecosystem and find useful tools and libraries.
-
-
- Help improve Solid by contributing to the documentation.
-
-
-
-_Find our API documentation under the **Reference** tab_
-
-Join the [Solid community on Discord](https://discord.com/invite/solidjs) to share your projects or get help from our community!
-
-
-
diff --git a/src/routes/pt-br/solid-router/quick-start.mdx b/src/routes/pt-br/solid-router/quick-start.mdx
deleted file mode 100644
index 2ea5251b7..000000000
--- a/src/routes/pt-br/solid-router/quick-start.mdx
+++ /dev/null
@@ -1,95 +0,0 @@
----
-title: Começo rápido
-use_cases: >-
- starting new project, project setup, first app, development environment,
- templates
-tags:
- - quickstart
- - setup
- - templates
- - getting-started
- - playground
-version: '1.0'
-description: >-
- Start building with Solid quickly. Try the playground, create projects with
- templates, and get your first Solid app running in minutes.
----
-
-## Solid playgrounds
-
-Experimente Solid in your browser by visiting our [interactive playground](https://playground.solidjs.com/).
-
-Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/templates/tree/master/js) and [TypeScript](https://stackblitz.com/github/solidjs/templates/tree/master/ts) Stackblitz starters, which provide a web-based development environment to get you started.
-
-## Creating a Solid application
-
-:::note[Prerequisites]
-
- - Familiarity with the command line
- - Install [Node.js](https://nodejs.org/en)
-
-:::
-
-Solid offers convenient project templates that can help kickstart your development.
-To get an application running, follow the steps below based on the language you prefer to use.
-
-### For JavaScript projects
-
-1. Run the following command in your terminal to get the JavaScript starter template:
-
-```bash frame="none"
-npx degit solidjs/templates/js my-app
-```
-
-2. Navigate to your application's directory:
-
-```bash frame="none"
-cd my-app
-```
-
-3. Install the necessary dependencies:
-
-```package-install-local
-```
-
-4. Run the application:
-
-```bash frame="none"
-npm run dev
-```
-
-This will start the development server.
-Now, you can open your browser and navigate to `localhost:3000` to see your application running.
-
-### For TypeScript projects
-
-1. To use a TypeScript template, run the following command in your terminal:
-
-```bash frame="none"
-npx degit solidjs/templates/ts my-app
-```
-
-2. Navigate to your application's directory:
-
-```bash frame="none"
-cd my-app
-```
-
-3. Install the necessary dependencies:
-
-```package-install-local
-```
-
-4. Run the application:
-
-```bash frame="none"
-npm run dev
-```
-
-This will start the development server.
-Now, you can open your browser and navigate to `localhost:3000` to see your application running.
-
-### Explore more templates
-
-Solid offers a variety of Vite templates to streamline your development process.
-These resources are available on [GitHub](https://github.com/solidjs/templates).