diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index 2495636..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Weather Changelog
-
-## [Initial Version] - {PR_MERGE_DATE}
\ No newline at end of file
diff --git a/src/hello.tsx b/src/hello.tsx
deleted file mode 100644
index 17de1fc..0000000
--- a/src/hello.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { Detail } from "@raycast/api";
-
-export default function Command() {
- return ;
-}
diff --git a/weather.tsx b/weather.tsx
deleted file mode 100644
index 251cf20..0000000
--- a/weather.tsx
+++ /dev/null
@@ -1,44 +0,0 @@
-import { Detail } from "@raycast/api";
-import { useEffect, useState } from "react";
-
-type WeatherData = {
- temperature: string;
- wind: string;
- description: string;
-};
-
-export default function Command() {
- const [weather, setWeather] = useState(null);
- const [error, setError] = useState(null);
-
- useEffect(() => {
- fetch("https://goweather.xyz/weather/berlin")
- .then((res) => {
- if (!res.ok) throw new Error("Network response was not ok");
- return res.json();
- })
- .then((data) => {
- const weatherData = data as { temperature: string; wind: string; description: string };
- setWeather({
- temperature: weatherData.temperature,
- wind: weatherData.wind,
- description: weatherData.description,
- });
- })
- .catch((e) => setError(e.message));
- }, []);
-
- if (error) {
- return ;
- }
-
- if (!weather) {
- return ;
- }
-
- return (
-
- );
-}