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 apps/web/src/routes/_view/enterprise.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function HeroSection() {

function PhilosophySection() {
return (
<section className="py-16 px-4 laptop:px-0 bg-[linear-gradient(to_right,#f5f5f5_1px,transparent_1px),linear-gradient(to_bottom,#f5f5f5_1px,transparent_1px)] bg-[size:24px_24px] bg-[position:12px_12px,12px_12px]">
<section className="py-16 px-4 laptop:px-0 bg-[linear-gradient(to_right,#f5f5f5_1px,transparent_1px),linear-gradient(to_bottom,#f5f5f5_1px,transparent_1px)] `bg-size-[24px_24px] bg-position-[12px_12px,12px_12px]">
<div className="max-w-4xl mx-auto">
<div
className="border border-neutral-200 p-4"
Expand Down
1 change: 0 additions & 1 deletion apps/web/src/routes/_view/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { DancingSticks } from "@hypr/ui/components/ui/dancing-sticks";
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/ai-notetaking.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";

Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/chat.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";

Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/hybrid-notetaking.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";

Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/local-ai.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute } from "@tanstack/react-router";

Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/local.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";

Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/notetaking.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";

Expand Down
10 changes: 0 additions & 10 deletions apps/web/src/routes/_view/product/summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,6 @@ function Component() {
>
<div className="max-w-6xl mx-auto border-x border-neutral-100 bg-white">
<div className="px-6 py-12 lg:py-20">
<nav className="mb-8">
<Link
to="/product"
className="inline-flex items-center gap-2 text-sm text-neutral-600 hover:text-stone-600 transition-colors"
>
<Icon icon="mdi:arrow-left" className="text-base" />
<span>Product</span>
</Link>
</nav>

<header className="mb-16">
<h1 className="text-4xl sm:text-5xl lg:text-6xl font-serif text-stone-600 mb-6">
Intelligent summaries
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/routes/_view/product/templates.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute } from "@tanstack/react-router";
import { allTemplates } from "content-collections";
Expand Down
13 changes: 2 additions & 11 deletions apps/web/src/routes/_view/product/transcript.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { cn } from "@hypr/utils";

import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";
import { createFileRoute } from "@tanstack/react-router";

export const Route = createFileRoute("/_view/product/transcript")({
component: Component,
Expand All @@ -24,16 +25,6 @@ function Component() {
>
<div className="max-w-6xl mx-auto border-x border-neutral-100 bg-white">
<div className="px-6 py-12 lg:py-20">
<nav className="mb-8">
<Link
to="/product"
className="inline-flex items-center gap-2 text-sm text-neutral-600 hover:text-stone-600 transition-colors"
>
<Icon icon="mdi:arrow-left" className="text-base" />
<span>Product</span>
</Link>
</nav>

<header className="mb-16">
<h1 className="text-4xl sm:text-5xl lg:text-6xl font-serif text-stone-600 mb-6">
Every word,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/_view/team.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cn } from "@hypr/utils";
import { Icon } from "@iconify-icon/react";
import { createFileRoute, Link } from "@tanstack/react-router";
import { createFileRoute } from "@tanstack/react-router";

export const Route = createFileRoute("/_view/team")({
component: Component,
Expand Down
Loading