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

Landing updates #2850

Merged
merged 35 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fac8abf
added companies carousel
jamiepine Jan 6, 2025
244811e
vdfs section wip
jamiepine Jan 7, 2025
e300b19
Fix for compile error on Vercel
Rocky43007 Jan 7, 2025
1209ba5
better bento boxes and security animation
jamiepine Jan 9, 2025
9816a52
goated vault animation
jamiepine Jan 9, 2025
15d8a17
cloud page
jamiepine Jan 10, 2025
e104c0d
sike ig thats a pricing page
jamiepine Jan 10, 2025
aaef271
improvement to button components
jamiepine Jan 10, 2025
ecc604f
added yearly pricing
jamiepine Jan 10, 2025
cfa88bd
roadmap updates
jamiepine Jan 10, 2025
af33000
hero updates (wip in figma)
jamiepine Jan 10, 2025
d03b67d
mobile app section
jamiepine Jan 11, 2025
2029f63
upgrade next in hopes of successful deploy
jamiepine Jan 11, 2025
dd75e28
downgrade next
jamiepine Jan 11, 2025
ff9247f
changes to content layer for deployment
jamiepine Jan 11, 2025
7cf511b
Fix vercel compile error, again
Rocky43007 Jan 11, 2025
c791e29
Update next.config.js
Rocky43007 Jan 12, 2025
008105a
Fix for onboarding
Rocky43007 Jan 19, 2025
b9bac06
mut http_client_builder
jamiepine Jan 19, 2025
ed1253a
fix cloud URL
jamiepine Jan 19, 2025
93ded85
Fix mobile compile
Rocky43007 Jan 20, 2025
ab39525
Remove auth
Rocky43007 Jan 21, 2025
d0cba36
Merge branch 'main' into landing-updates
Rocky43007 Jan 21, 2025
daca2aa
Fix volumes deadlock
Rocky43007 Jan 21, 2025
8041bd6
Update pnpm-lock.yaml
Rocky43007 Jan 21, 2025
20aa350
Update lib.rs
Rocky43007 Jan 21, 2025
e55d6e5
Get statistics working with volumes
Rocky43007 Jan 21, 2025
6124a9b
Disable date filters
Rocky43007 Jan 21, 2025
8e93c3d
Updates
Rocky43007 Jan 22, 2025
9f08def
Roadmap updates
Rocky43007 Jan 22, 2025
32f7e96
Update team members
Rocky43007 Jan 22, 2025
0923f5d
Update page.tsx
Rocky43007 Jan 22, 2025
4893811
Fix to date filters
Rocky43007 Jan 23, 2025
3bdd109
Get readable dates & fix date filter search
Rocky43007 Jan 25, 2025
ee086c4
Change version to `0.4.3`
Rocky43007 Jan 28, 2025
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
3 changes: 2 additions & 1 deletion Cargo.lock

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

31 changes: 16 additions & 15 deletions apps/desktop/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,22 @@ declare global {
}
}

SuperTokens.init({
appInfo: {
apiDomain: AUTH_SERVER_URL,
apiBasePath: '/api/auth',
appName: 'Spacedrive Auth Service'
},
cookieHandler: getCookieHandler,
windowHandler: getWindowHandler,
recipeList: [
Session.init({ tokenTransferMethod: 'header' }),
EmailPassword.init(),
ThirdParty.init(),
Passwordless.init()
]
});
// Disabling until sync is ready.
// SuperTokens.init({
// appInfo: {
// apiDomain: AUTH_SERVER_URL,
// apiBasePath: '/api/auth',
// appName: 'Spacedrive Auth Service'
// },
// cookieHandler: getCookieHandler,
// windowHandler: getWindowHandler,
// recipeList: [
// Session.init({ tokenTransferMethod: 'header' }),
// EmailPassword.init(),
// ThirdParty.init(),
// Passwordless.init()
// ]
// });

const startupError = (window as any).__SD_ERROR__ as string | undefined;

Expand Down
2 changes: 1 addition & 1 deletion apps/landing/contentlayer.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineDocumentType, makeSource } from '@contentlayer/source-files';
import { defineDocumentType, makeSource } from 'contentlayer2/source-files';
import readingTime from 'reading-time';
// support for anchor links
import rehypeAutolinkHeadings from 'rehype-autolink-headings';
Expand Down
2 changes: 1 addition & 1 deletion apps/landing/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
2 changes: 1 addition & 1 deletion apps/landing/next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @ts-check
const { withContentlayer } = require('next-contentlayer');
const { withContentlayer } = require('next-contentlayer2');
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
});
Expand Down
27 changes: 15 additions & 12 deletions apps/landing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "contentlayer build && next build",
"build": "contentlayer2 build && next build",
"start": "next start",
"prod": "pnpm build && pnpm start",
"lint": "next lint",
"typecheck": "contentlayer build && tsc -b"
"typecheck": "contentlayer2 build && tsc -b"
},
"dependencies": {
"@docsearch/react": "^3.5.2",
Expand All @@ -23,15 +23,16 @@
"@sd/ui": "workspace:*",
"@t3-oss/env-nextjs": "^0.7.1",
"@tsparticles/react": "^3.0.0",
"@vercel/edge-config": "^1.4.0",
"clsx": "^2.0.0",
"contentlayer": "^0.3.4",
"contentlayer2": "^0.5.3",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.5",
"image-size": "^1.0.2",
"katex": "^0.16.9",
"markdown-to-jsx": "^7.3.2",
"next": "14.2.5",
"next-contentlayer": "^0.3.4",
"next": "14.2.12",
"next-contentlayer2": "^0.5.3",
"next-plausible": "^3.11.3",
"react": "18.2.0",
"react-burger-menu": "^3.0.9",
Expand All @@ -40,15 +41,17 @@
"react-error-boundary": "^4.0.11",
"react-github-btn": "^1.4.0",
"react-parallax-tilt": "^1.7.250",
"react-scroll-parallax": "^3.4.5",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^2.1.0",
"rehype-katex": "^6.0.3",
"rehype-prism-plus": "^1.6.3",
"rehype-autolink-headings": "^7.0.0",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-mdx-images": "^2.0.0",
"remark": "15.0.1",
"remark-gfm": "4.0.0",
"remark-math": "^6.0.0",
"remark-mdx-images": "^3.0.0",
"tailwind-merge": "^1.14.0",
"three": "^0.161.0",
"tsparticles": "^3.3.0",
Expand Down
Binary file added apps/landing/public/images/app/AppHero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/app/mobile1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/app/mobile2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/app/mobile3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/app/mobile4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/app/mobile5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/landing/public/images/cloud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions apps/landing/public/images/companies/1Password.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading