Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import StaticNavigation from "../components/StaticNavbar";
import StaticNavigation from "@/components/StaticNavigation";
import Footer from "../components/Footer";
import "./globals.css";

Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function BlogPage() {
return parseCustomDate(b.date) - parseCustomDate(a.date);
});
return (
<div className="min-h-screen">
<div className="min-h-screen bg-[#0a0a0a]">
<main className="pt-16">
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
<div className="mb-16">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const Footer = () => {
<div className="grid grid-cols-1 lg:grid-cols-5 gap-8 lg:gap-12">
{/* Left side - Logo and Social Links */}
<div className="lg:col-span-2">
<Link href="/">
<Link href="https://nexlayer.com">
<div className="mb-6">
<NexlayerLogo className="h-8 w-auto" />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const StaticNavigation = () => {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-14 sm:h-16">
<div className="flex items-center space-x-2">
<a href="/blog" className="flex items-center">
<a href="https://nexlayer.com" className="flex items-center">
<NexlayerLogo className="h-6 sm:h-7 w-auto" />
</a>
<span className="bg-teal-900/50 text-cyan-400 text-xs font-medium px-2 py-1 rounded border border-cyan-400/30">
Expand Down
22 changes: 18 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -19,9 +23,19 @@
}
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next-env.d.ts",
"build/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}