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: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy Frontend to AWS S3 & CloudFront
on:
push:
branches:
- main
- chk_cicd

jobs:
deploy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: [ "main" ]
branches: [ "chk_cicd" ]
pull_request:
branches: [ "main" ]
branches: [ "chk_cicd" ]

jobs:
build:
Expand Down
48 changes: 0 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
Expand All @@ -31,13 +30,11 @@
"gsap": "^3.12.7",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.460.0",
"monaco-editor": "^0.52.2",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.15.1",
"react-resizable-panels": "^3.0.3",
"react-router-dom": "^6.28.0",
"react-type-animation": "^3.2.0",
"recharts": "^2.15.0",
Expand Down
8 changes: 1 addition & 7 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import DeploymentProgress from './components/pages/DeploymentProgress';
import DeployForm from './components/pages/DeployForm';
import LoginPage from './components/LoginPage';
import ProjectLister from './components/pages/ProjectLister';
import CodeEditorPage from './components/pages/CodeEditorPage';
import NavBar from './components/NavBar';
import Footer from './components/Footer';
import { useUser } from './context/userContext';
Expand Down Expand Up @@ -56,14 +55,9 @@ function AppContent() {
</ProtectedRoute>
} />
<Route path="/projects" element={<ProjectLister />} />
<Route path="/editor/:projectId" element={
// <ProtectedRoute>
<CodeEditorPage />
// </ProtectedRoute>
} />
</Routes>

{location.pathname !== '/login' && location.pathname !== '/editor/:projectId' && <Footer />}
{location.pathname !== '/login' && <Footer />}
</>
);
}
Expand Down
1 change: 1 addition & 0 deletions src/components/HeroSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ const HeroSection = () => {
/>
</div>
<span className="tech-text">FlareNet</span>
<span className="text-xl md:text-2xl text-yellow-400 mt-2 animate-pulse">Coming Soon - Services will be available shortly. Stay tuned!</span>
</h1>
<p className="text-lg md:text-xl mb-8 neon-text">
Deploy your applications instantly with world-class performance, scalability, and security.
Expand Down
4 changes: 1 addition & 3 deletions src/components/NavBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from "react";
import { Button } from "@/components/ui/button";
import { useNavigate } from "react-router-dom";
import { useUser } from "../context/userContext";
import { FaUserCircle, FaSignOutAlt, FaSignInAlt, FaUserPlus, FaBars, FaTimes, FaCode } from "react-icons/fa";
import { FaUserCircle, FaSignOutAlt, FaSignInAlt, FaUserPlus, FaBars, FaTimes } from "react-icons/fa";
import { FiHome, FiFolder, FiInfo, FiMail } from "react-icons/fi";

const NavBar = () => {
Expand Down Expand Up @@ -43,7 +43,6 @@ const NavBar = () => {
{[
{ name: "Home", icon: FiHome, path: "/" },
{ name: "My Projects", icon: FiFolder, path: "/projects" },
{ name: "Code Editor", icon: FaCode, path: "/editor/123" },
{ name: "About Us", icon: FiInfo, path: "/about" },
{ name: "Contact Us", icon: FiMail, path: "/contact" }
].map(({ name, icon: Icon, path }) => (
Expand Down Expand Up @@ -107,7 +106,6 @@ const NavBar = () => {
{[
{ name: "Home", icon: FiHome, path: "/" },
{ name: "My Projects", icon: FiFolder, path: "/projects" },
{ name: "Code Editor", icon: FaCode, path: "/editor/123" },
{ name: "About Us", icon: FiInfo, path: "/about" },
{ name: "Contact Us", icon: FiMail, path: "/contact" }
].map(({ name, icon: Icon, path }) => (
Expand Down
Loading