Merge branch 'cursor/air-freight-page'

This commit is contained in:
2026-07-13 15:15:46 +05:30
55 changed files with 7247 additions and 81 deletions

View File

@@ -2,6 +2,15 @@ import type { NextConfig } from "next";
import path from "path";
const nextConfig: NextConfig = {
async redirects() {
return [
{
source: "/air-freight",
destination: "/doormile-wings",
permanent: true,
},
];
},
turbopack: {
root: path.resolve(__dirname),
},