diff --git a/aggregate-code.zsh b/aggregate-code.zsh
deleted file mode 100755
index 1347ae4..0000000
--- a/aggregate-code.zsh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/zsh
-
-# Check if directory is provided
-if [ -z "$1" ]
-then
- echo "No directory provided. Please provide a directory."
- exit 1
-fi
-
-# Directory to search
-dir="$1"
-
-# Log the directory
-echo "Searching directory: $dir"
-
-# Output file
-output_file="combined.txt"
-
-# Find and concatenate files
-find "$dir" -type f \( -name "*.tsx" -o -name "*.css" \) -exec cat {} + > "$output_file"
-
-# Log the operation
-echo "Files combined successfully. Check the $output_file file."
\ No newline at end of file
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
deleted file mode 100644
index b6d9a4e..0000000
--- a/azure-pipelines.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-# Docker
-# Build a Docker image
-# https://docs.microsoft.com/azure/devops/pipelines/languages/docker
-
-trigger:
-- main
-
-resources:
-- repo: self
-
-variables:
- tag: '$(Build.BuildId)'
-
-stages:
-- stage: Build
- displayName: Build image
- jobs:
- - job: Build
- displayName: Build
- pool:
- vmImage: ubuntu-latest
- steps:
- - task: Docker@2
- displayName: Build an image
- inputs:
- command: build
- dockerfile: '$(Build.SourcesDirectory)/Dockerfile'
- tags: |
- $(tag)
diff --git a/dbbackup/backup310124.sql b/dbbackup/backup310124.sql
deleted file mode 100644
index e69de29..0000000
diff --git a/test-awl/.eslintrc.json b/test-awl/.eslintrc.json
deleted file mode 100644
index bffb357..0000000
--- a/test-awl/.eslintrc.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "extends": "next/core-web-vitals"
-}
diff --git a/test-awl/.gitignore b/test-awl/.gitignore
deleted file mode 100644
index fd3dbb5..0000000
--- a/test-awl/.gitignore
+++ /dev/null
@@ -1,36 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-.yarn/install-state.gz
-
-# testing
-/coverage
-
-# next.js
-/.next/
-/out/
-
-# production
-/build
-
-# misc
-.DS_Store
-*.pem
-
-# debug
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-
-# local env files
-.env*.local
-
-# vercel
-.vercel
-
-# typescript
-*.tsbuildinfo
-next-env.d.ts
diff --git a/test-awl/README.md b/test-awl/README.md
deleted file mode 100644
index c403366..0000000
--- a/test-awl/README.md
+++ /dev/null
@@ -1,36 +0,0 @@
-This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
-
-## Getting Started
-
-First, run the development server:
-
-```bash
-npm run dev
-# or
-yarn dev
-# or
-pnpm dev
-# or
-bun dev
-```
-
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
-
-You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
-
-This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
-
-## Learn More
-
-To learn more about Next.js, take a look at the following resources:
-
-- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
-- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
-
-You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
-
-## Deploy on Vercel
-
-The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
-
-Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/test-awl/next.config.mjs b/test-awl/next.config.mjs
deleted file mode 100644
index 4678774..0000000
--- a/test-awl/next.config.mjs
+++ /dev/null
@@ -1,4 +0,0 @@
-/** @type {import('next').NextConfig} */
-const nextConfig = {};
-
-export default nextConfig;
diff --git a/test-awl/package.json b/test-awl/package.json
deleted file mode 100644
index 58c89f6..0000000
--- a/test-awl/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "name": "test-awl",
- "version": "0.1.0",
- "private": true,
- "scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start",
- "lint": "next lint"
- },
- "dependencies": {
- "react": "^18",
- "react-dom": "^18",
- "next": "14.1.0"
- },
- "devDependencies": {
- "typescript": "^5",
- "@types/node": "^20",
- "@types/react": "^18",
- "@types/react-dom": "^18",
- "autoprefixer": "^10.0.1",
- "postcss": "^8",
- "tailwindcss": "^3.3.0",
- "eslint": "^8",
- "eslint-config-next": "14.1.0"
- }
-}
diff --git a/test-awl/postcss.config.js b/test-awl/postcss.config.js
deleted file mode 100644
index 12a703d..0000000
--- a/test-awl/postcss.config.js
+++ /dev/null
@@ -1,6 +0,0 @@
-module.exports = {
- plugins: {
- tailwindcss: {},
- autoprefixer: {},
- },
-};
diff --git a/test-awl/public/next.svg b/test-awl/public/next.svg
deleted file mode 100644
index 5174b28..0000000
--- a/test-awl/public/next.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/test-awl/public/vercel.svg b/test-awl/public/vercel.svg
deleted file mode 100644
index d2f8422..0000000
--- a/test-awl/public/vercel.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/test-awl/src/app/favicon.ico b/test-awl/src/app/favicon.ico
deleted file mode 100644
index 718d6fe..0000000
Binary files a/test-awl/src/app/favicon.ico and /dev/null differ
diff --git a/test-awl/src/app/globals.css b/test-awl/src/app/globals.css
deleted file mode 100644
index 875c01e..0000000
--- a/test-awl/src/app/globals.css
+++ /dev/null
@@ -1,33 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
-
-:root {
- --foreground-rgb: 0, 0, 0;
- --background-start-rgb: 214, 219, 220;
- --background-end-rgb: 255, 255, 255;
-}
-
-@media (prefers-color-scheme: dark) {
- :root {
- --foreground-rgb: 255, 255, 255;
- --background-start-rgb: 0, 0, 0;
- --background-end-rgb: 0, 0, 0;
- }
-}
-
-body {
- color: rgb(var(--foreground-rgb));
- background: linear-gradient(
- to bottom,
- transparent,
- rgb(var(--background-end-rgb))
- )
- rgb(var(--background-start-rgb));
-}
-
-@layer utilities {
- .text-balance {
- text-wrap: balance;
- }
-}
diff --git a/test-awl/src/app/layout.tsx b/test-awl/src/app/layout.tsx
deleted file mode 100644
index 28da9d3..0000000
--- a/test-awl/src/app/layout.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import type { Metadata } from 'next';
-import { Inter } from 'next/font/google';
-import './globals.css';
-
-const inter = Inter({ subsets: ['latin'] });
-
-export const metadata: Metadata = {
- title: 'Create Next App',
- description: 'Generated by create next app',
-};
-
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return (
-
-
{children}
-
- );
-}
diff --git a/test-awl/src/app/page.tsx b/test-awl/src/app/page.tsx
deleted file mode 100644
index b11db4a..0000000
--- a/test-awl/src/app/page.tsx
+++ /dev/null
@@ -1,113 +0,0 @@
-import Image from 'next/image';
-
-export default function Home() {
- return (
-
-
-
- Get started by editing
- src/app/page.tsx
-
-
-
-
-
-
-
-
-
-
- );
-}
diff --git a/test-awl/tailwind.config.ts b/test-awl/tailwind.config.ts
deleted file mode 100644
index 13d21fa..0000000
--- a/test-awl/tailwind.config.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-import type { Config } from 'tailwindcss';
-
-const config: Config = {
- content: [
- './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
- './src/components/**/*.{js,ts,jsx,tsx,mdx}',
- './src/app/**/*.{js,ts,jsx,tsx,mdx}',
- ],
- theme: {
- extend: {
- backgroundImage: {
- 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
- 'gradient-conic':
- 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
- },
- },
- },
- plugins: [],
-};
-export default config;
diff --git a/test-awl/tsconfig.json b/test-awl/tsconfig.json
deleted file mode 100644
index 35392a1..0000000
--- a/test-awl/tsconfig.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "compilerOptions": {
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
- "plugins": [
- {
- "name": "next",
- },
- ],
- "paths": {
- "@/*": ["./src/*"],
- },
- },
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"],
-}