Commit d941aa09 authored by TokaKaram's avatar TokaKaram

change title color

parent f88ef1a8
{ {
"schemaVersion": 2, "schemaVersion": 2,
"dockerfileLines": [ "dockerfileLines": [
"FROM node:22-alpine", "FROM node:22-alpine AS build-step",
"WORKDIR /app", "WORKDIR /app",
"COPY . .", "COPY . .",
"RUN cd backend && npm install --production", "RUN cd frontend && npm install && npm run build",
"ENV PORT=5000", "FROM socialengine/nginx-spa:latest",
"EXPOSE 5000", "COPY --from=build-step /app/frontend/dist /app",
"CMD [\"sh\", \"-c\", \"cd backend && node server.js\"]" "RUN chmod -R 777 /app"
] ]
} }
\ No newline at end of file
...@@ -24,7 +24,7 @@ export default function QuizList() { ...@@ -24,7 +24,7 @@ export default function QuizList() {
{quizzes.map(quiz => ( {quizzes.map(quiz => (
<div key={quiz.id} className="bg-white rounded-xl shadow-lg overflow-hidden card-hover"> <div key={quiz.id} className="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
<div className="gradient-bg p-6"> <div className="gradient-bg p-6">
<h2 className="text-xl font-bold text-white">{quiz.title}</h2> <h2 className="text-xl font-bold text-black">{quiz.title}</h2>
</div> </div>
<div className="p-6"> <div className="p-6">
<p className="text-gray-600 mb-4">{quiz.description}</p> <p className="text-gray-600 mb-4">{quiz.description}</p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment