Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Production v1.0.1 #74

Merged
merged 4 commits into from
Jan 30, 2024
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.1](https://github.com/frontChapter/website-frontend/compare/v0.8.2...v1.0.1) (2024-01-30)


### Features

* timeline on desktop ([517b652](https://github.com/frontChapter/website-frontend/commit/517b6528216eaf02ffe49449e78d39762d66b12e))


### Bug Fixes

* add NEXT_PUBLIC to ticket env ([8393325](https://github.com/frontChapter/website-frontend/commit/83933256a95a7aaaefd2ac85b073f44e57eee9d4))
* add speakers graphical lines ([27c42ca](https://github.com/frontChapter/website-frontend/commit/27c42cac24bc40c1fd71862efff6ed5f4df97ad9))
* NEXT_PUBLIC environments ([96a8202](https://github.com/frontChapter/website-frontend/commit/96a8202ca691d8938867d8703f0c06498b8f0f7e))
* update favicon ([c0d5e0b](https://github.com/frontChapter/website-frontend/commit/c0d5e0b130c4c7e3fe3de4c4941be200fbdde0ae))
* vscode tailwind apply ([1c840bb](https://github.com/frontChapter/website-frontend/commit/1c840bbb0311cfa20adf8eb011c8c77f55a21cdf))

## [1.0.0](https://github.com/frontChapter/website-frontend/compare/v0.8.2...v1.0.0) (2024-01-30)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "website-frontend",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/app/components/ConferenceTicket/ConferenceTicket.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
RiVipDiamondFill,
} from "react-icons/ri";
import TicketPlanCard from "./TicketPlanCard";
import { env } from "process";

export default function ConferenceLocation() {
return (
Expand All @@ -20,7 +21,7 @@ export default function ConferenceLocation() {
<h3 className="text-2xl font-bold lg:text-3xl">بلیت‌های همایش</h3>
<Link
target="_blank"
href={NEXT_PUBLIC_TICKET_URL ?? "#?"}
href={env.NEXT_PUBLIC_TICKET_URL ?? "#?"}
className={`${buttonVariants({
variant: "primary",
})} mt-4 gap-2 px-2 py-1.5 lg:mt-6 lg:gap-2 lg:px-3 lg:py-2`}
Expand Down
3 changes: 2 additions & 1 deletion src/app/components/ConferenceTicket/TicketPlanCard.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { cn } from "@/utils/styles";
import Link from "next/link";
import { env } from "process";
import { ReactNode } from "react";

interface TicketPlanCardProps {
Expand All @@ -19,7 +20,7 @@ interface TicketPlanCardProps {
const TicketPlanCard = (props: TicketPlanCardProps) => {
return (
<Link
href={NEXT_PUBLIC_TICKET_URL ?? "#?"}
href={env.NEXT_PUBLIC_TICKET_URL ?? "#?"}
target="_blank"
className={cn({
"pointer-events-none": props.soldOut,
Expand Down
3 changes: 2 additions & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { buttonVariants } from "@/components/ui/Button";
import Image from "next/image";
import Link from "next/link";
import { env } from "process";
import { RiCouponFill, RiMenuLine } from "react-icons/ri";

const Navbar = () => {
Expand Down Expand Up @@ -34,7 +35,7 @@ const Navbar = () => {
<div className="flex items-end gap-4 text-end">
<Link
target="_blank"
href={NEXT_PUBLIC_TICKET_URL ?? "#?"}
href={env.NEXT_PUBLIC_TICKET_URL ?? "#?"}
className={`${buttonVariants({
variant: "primary",
})} gap-1 px-2 py-1.5 lg:gap-2 lg:px-3 lg:py-2`}
Expand Down
Loading