File tree Expand file tree Collapse file tree 2 files changed +46
-2
lines changed
Expand file tree Collapse file tree 2 files changed +46
-2
lines changed Original file line number Diff line number Diff line change 11import { component$ } from "@builder.io/qwik" ;
22import type { DocumentHead } from "@builder.io/qwik-city" ;
3+ import OG from "/just-rnd.png" ;
34import Landing from "./landing" ;
45export default component$ ( ( ) => {
56 return < Landing /> ;
67} ) ;
78export const head : DocumentHead = {
8- title : "Just RND" ,
9+ title : "Just RND | Collaborative Study Platform " ,
910 meta : [
1011 {
1112 name : "description" ,
12- content : "some plaform about collaboration" ,
13+ content :
14+ "Find study buddies nearby and collaborate with fellow students at different places in your city. Join study sessions and build connections." ,
15+ } ,
16+ {
17+ name : "og:title" ,
18+ content : "Study Hack | Collaborative Study Platform" ,
19+ } ,
20+ {
21+ name : "og:description" ,
22+ content :
23+ "Find study buddies nearby and collaborate with fellow students at different places in your city. Join study sessions and build connections." ,
24+ } ,
25+ {
26+ name : "og:image" ,
27+ content : OG ,
28+ } ,
29+ {
30+ name : "og:image:width" ,
31+ content : "1200" ,
32+ } ,
33+ {
34+ name : "og:image:height" ,
35+ content : "630" ,
36+ } ,
37+ {
38+ name : "og:url" ,
39+ content : "https://www.justrnd.com" ,
40+ } ,
41+ {
42+ name : "twitter:card" ,
43+ content : "summary_large_image" ,
44+ } ,
45+ {
46+ name : "twitter:title" ,
47+ content : "Just RND | Collaborative Study Platform" ,
48+ } ,
49+ {
50+ name : "twitter:description" ,
51+ content :
52+ "Find study buddies nearby and collaborate with fellow students at different places in your city. Join study sessions and build connections." ,
53+ } ,
54+ {
55+ name : "twitter:image" ,
56+ content : OG ,
1357 } ,
1458 ] ,
1559} ;
You can’t perform that action at this time.
0 commit comments