Skip to content

Commit

Permalink
[fix] About page
Browse files Browse the repository at this point in the history
  • Loading branch information
SandeepYadav99 committed Aug 16, 2023
1 parent e17a121 commit cfa7ca4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
images: {
domains: ["www.traveltippler.com"],
unoptimized: true ,
},
output: 'export',
};

module.exports = nextConfig
2 changes: 1 addition & 1 deletion src/app/category/[categoryIds]/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Category_Post from "@/pages/Category/Category_Post";
const CategoryIds = () => {
const params = useParams();
const paramsList = formatCategory(params.categoryIds);

console.log(paramsList)
return (
<div className="md:flex md:justify-between mx-[5%] md:mt-2 ">
<div className=" sm:w-max-[1160px] bg-white h-auto">
Expand Down
4 changes: 2 additions & 2 deletions src/pages/About-Us/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from "react";

const About = () => {
return (
<div className="flex justify-center items-center mt-2 p-2 ">
<div className="w-[80%] bg-white shadow-xl p-[20px]">
<div className="flex justify-center items-center mt-2 p-2">
<div className="w-full bg-white shadow-xl ">
<div className="m-[2%]">
<h1 className="text-[24px] font-bold text-left m-4">
Welcome to TravelTippler – Your Journey Begins Here!
Expand Down

0 comments on commit cfa7ca4

Please sign in to comment.